使用打印功能输出“无”

时间:2019-12-13 18:51:01

标签: python python-3.x

enter image description here

这是正常现象还是我做错了什么?

2 个答案:

答案 0 :(得分:2)

就像,您想要的是: access = input('Type the key you want')

即使print()功能向您的终端显示输出,它也没有返回任何东西,因此为什么print(access)->None

答案 1 :(得分:2)

input方法不需要print方法。

只需:

access = input('Some prompt text:\n')