+ 2
Why is it not working?
criminals = int(input()) if criminals < 5 : print ("I got this!") elif 5 <= criminals <= 10: print ("Help me Batman") else: print ("Good luck out there!")
2 Answers
+ 3
try with capital l (Luck)
+ 3
It worked...
criminals = int(input()) if criminals < 5 : print ("I got this!") elif 5 <= criminals <= 10: print ("Help me Batman") else: print ("Good luck out there!")