0
Gotham City Help
https://code.sololearn.com/ct8If2Xy8IHM/#py this is my code and I can't pass test 3 and 4 can you help me
3 Answers
+ 6
enemyNumber = int(input())
if (enemyNumber > 10):
print("Good Luck out there!")
elif (5 <= enemyNumber <= 10):
print("Help me Batman")
else:
print("I got this!")
+ 5
Considerations:
1. The output of the first condition was misspelled.
2. The second condition had wrong established ranges
0
thank you