• + 0 comments

    n = int(input("enter a num:")) if 1<=n<=100: if n%2==1 or (n%2==0 and n in range(6,21)): print("Weird") elif (n%2==0 and n in range(2,6)) or (n%2==0 and n>20): print("Not Weird") else: print("Not Weird") (whats wrong with this code)