标签: python python-3.x
这是正常现象还是我做错了什么?
答案 0 :(得分:2)
就像,您想要的是: access = input('Type the key you want')
access = input('Type the key you want')
即使print()功能向您的终端显示输出,它也没有返回任何东西,因此为什么print(access)->None
print()
print(access)->None
答案 1 :(得分:2)
input方法不需要print方法。
input
print
只需:
access = input('Some prompt text:\n')