You are viewing a single comment's thread. Return to all comments →
n=int(input()) if (n % 2 == 0) & (n in range(2,6)): print("Not Weird") elif (n %2 ==0) & (n in range(6,21)): print("Weird") elif (n %2==0) & (n >=20): print("Not Weird") else: print('Weird')
Python If-Else
You are viewing a single comment's thread. Return to all comments →