Here is my code
inputUSer=input('''
Please Select The Mode you want to operate The script AS:
1: You selected-1 \n
2: You selected-2 \n
3: You selected-3\n
4: You selected-4 \n
''')
if inputUSer==1:
print("You selected-1")
elif inputUSer==2:
print("You selected-2")
elif inputUSer== 3:
print("You selected-3")
elif inputUSer== 4:
print("You selected-4")
else :
print("OOPS! Seems like you entered the wrong Input")
I checked all the indentation and it's correct. I am new to python and a Noob. Please Help me... Thank you...