We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
def evod(n):
if n%2!=0:
print("Weird")
count=1
while count<=100:
if n%2==0 and n<=5:
print("Not Weird")
break
elif n%2==0 and n>=6 and n<=20:
print("Weird")
break
elif n%2==0 and n>=20:
print("Not Weird")
break
else:
pass
evod(20)
May i know why odd conditon is failed in my case
else:
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Python If-Else
You are viewing a single comment's thread. Return to all comments →
def evod(n): if n%2!=0: print("Weird") count=1 while count<=100: if n%2==0 and n<=5: print("Not Weird") break elif n%2==0 and n>=6 and n<=20: print("Weird") break elif n%2==0 and n>=20: print("Not Weird") break else: pass evod(20) May i know why odd conditon is failed in my case