print ("Hello user")
usrinput = int(input("Enter PIN"))
if usrinput == ("1234")
print ("You entered right PIN code")
elif usrinput > ("1234")
print ("You entered too many numbers")
elif usrinput < ("1234")
print ("Please enter the pin code one more time")
НО ВЫВОДИТ ОШИБКУ
File "C:\Users\User\AppData\Local\Temp/ipykernel_1152/2075422718.py", line 3
if input == ("1234")
^
SyntaxError: invalid syntax
usrinput = int(input("Enter PIN"))
if usrinput == ("1234")
print ("You entered right PIN code")
elif usrinput > ("1234")
print ("You entered too many numbers")
elif usrinput < ("1234")
print ("Please enter the pin code one more time")
НО ВЫВОДИТ ОШИБКУ
File "C:\Users\User\AppData\Local\Temp/ipykernel_1152/2075422718.py", line 3
if input == ("1234")
^
SyntaxError: invalid syntax