我正在尝试在 python 中创建一个密码系统。我不知道这有什么问题
i am trying to make a password system in python. i dont know whats wrong with this
import os
pasword = os.environ['PASSWORD']
askpassword = input("Enter Password : ")
if askpassword == (pasword)
print ("Correct Password, you now have access to this code")
if not askpassword == (pasword)
exit()
这是我的代码,它告诉我这个错误:
File "main.py", line 6
if askpassword == 'pasword'
^
SyntaxError: invalid syntax
顺便说一句,我正在使用https://replit.com
简单修复 - 您忘记了冒号。
if askpassword == (pasword):
在 python 中,所有控制结构后面都需要有一个冒号。
import os
pasword = os.environ['PASSWORD']
askpassword = input("Enter Password : ")
if askpassword == (pasword)
print ("Correct Password, you now have access to this code")
if not askpassword == (pasword)
exit()
这是我的代码,它告诉我这个错误:
File "main.py", line 6
if askpassword == 'pasword'
^
SyntaxError: invalid syntax
顺便说一句,我正在使用https://replit.com
简单修复 - 您忘记了冒号。
if askpassword == (pasword):
在 python 中,所有控制结构后面都需要有一个冒号。