我刚开始学习python并遇到错误,我不知道如何解决。 我刚刚编写了一个代码,它只是要求用户输入一个数字,使用输入函数。
a=input("enter the number:")
print("The number you entered:")
print(a)
,输出为
enter the number:101
4645
65465464564654654
54545445
它只是不去打印语句,它继续为变量a输入。请帮忙... 我正在使用pycharm来编写代码。
答案 0 :(得分:0)
不确定我的问题是否正确,但您可以尝试写作:
a = input("enter the number:")
print ("The number you entered:" , a)
并在shell中运行它。你将能够获得输出:
enter the number:101
The number you entered: 101
希望这有帮助!