+ 1
I can't solve. test case 3 and 4 are failed. help me
n=int(input()) if n>=0 and n<5: print("I got this!") elif n>4 and n<11: print ("Help me Batman") elif n>10 : print("Good Luck out there")
3 Respuestas
+ 5
MD.Nafis Sadiq Bhuyan
In last print statement you forgot the exclamation mark !
n=int(input())
if n>=0 and n<5:
print("I got this!")
elif n>4 and n<11:
print ("Help me Batman")
elif n>10 :
print("Good Luck out there!")
0
what is question ?
0
I don't see anything wrong.