为什么一样的代码,我输入用户名要加
来源:6-10 常量与Pylint的规范
慕标4749975
2018-08-17
account = 'fzn'
password = 'rich'
print('please input account')
user_account = input()
print('please input password')
user_password = input()
if account == user_account and password == user_password :
print('welcome')
else :
print('sorry')
########################下面是terminal
appledeMacBook-Pro:练习代码 apple$ python test0.py
please input account
fzn
Traceback (most recent call last):
File "test0.py", line 5, in <module>
user_account = input()
File "<string>", line 1, in <module>
NameError: name 'fzn' is not defined
写回答
2回答
-
这和terminal的设置有关系,可以试一下 加一个 引号在输入的时候
022019-03-08 -
慕仔4051039
2019-03-08
老师请问具体要这么设置 什么叫加一个引号在输入的时候
022019-03-15
相似问题