You are viewing a single comment's thread. Return to all comments →
n = int(input("Enter an integer: "))
if n % 2 != 0: print("Weird") else: if n in range(2, 6): print("Not Weird") elif n in range(6, 21): print("Weird") else: print("Not Weird")
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
Python If-Else
You are viewing a single comment's thread. Return to all comments →
n = int(input("Enter an integer: "))
if n % 2 != 0: print("Weird") else: if n in range(2, 6): print("Not Weird") elif n in range(6, 21): print("Weird") else: print("Not Weird")