0
Batman Challenge
num = int(input("Total number of criminals being reported: ")) if num<5: print ("I got this!") elif 5<=num<=10: print ("Help me Batman") elif num>10: print ("Good Luck out there!") Unable to understand the error
12 Réponses
+ 1
Navojit Basu please remove the "total...reported" string!
+ 1
Nothing, just empty string!
+ 1
Thanks a lot done that
+ 1
Answer is
A=input()
if(int(A)<int(5)):
print("I got this!")
elif(int(A)>=int(5) and int(A)<=int(10)):
print("Help me Batmam")
elif(int(A)>int(10)):
print("Good Luck out there!")
0
Okay
0
Then what will I put there?
0
Okay sir
0
I have completed the challenge
0
Please to help you!
0
I am obliged to have a great coder like you
0
# the solution
criminals = input()
criminals = int(criminals)
if criminals < 5:
print("I got this")
elif criminals >= 5 and criminals <=10:
print("Help me Batman")
elif criminals > 10:
print("Good Luck out there")
#Make sure you use capital letters in the strings
- 1
Please help me