即使在EOF之后,Python输入功能仍继续输入?

时间:2017-01-20 17:30:47

标签: python python-3.x

我刚开始学习python并遇到错误,我不知道如何解决。 我刚刚编写了一个代码,它只是要求用户输入一个数字,使用输入函数。

a=input("enter the number:")
print("The number you entered:")
print(a)

,输出为

enter the number:101
4645
65465464564654654
54545445

enter image description here

它只是不去打印语句,它继续为变量a输入。请帮忙... 我正在使用pycharm来编写代码。

1 个答案:

答案 0 :(得分:0)

不确定我的问题是否正确,但您可以尝试写作:

a = input("enter the number:")
print ("The number you entered:" , a)

并在shell中运行它。你将能够获得输出:

enter the number:101
The number you entered: 101

希望这有帮助!