def test(liczba): if liczba % 2 == 0 and liczba > 50 and liczba < 100: return True else: return False print(str(test(73)))