Error:
Traceback (most recent call last):
File "python", line 2
if Number == "50" and "51" and "52" and "53" and "54" and "55" and "56 "and "57" and "58" and "59" and "60":
^
IndentationError: unexpected indent
Code:
Number = input ("Please enter a number between 50 and 60: ")
if Number == "50" and "51" and "52" and "53" and "54" and "55" and "56 "and "57" and "58" and "59" and "60":
print ("The number ") + (Number) + (" is with in range")
I'm trying to run this python code but i keep getting error message "unexpected indent". I'm not sure whats wrong. The spacing seem to be fine. Any idea's?