标签: python python-3.x
我已经安装了python 3.5.2,但是当我尝试从用户那里获取值时它没有工作它只显示消息但从未从用户那里获取值我该如何解决这个问题??
答案 0 :(得分:0)
像@Moses所说,你必须使用input()函数:
>>> d = input('Enter the num here: ') Enter the num here: 222 >>> d '222' >>> int(d) 222