首先,我对编程和python很新,所以很抱歉。
我正在尝试使用原始输入从用户那里获得输入,但也在努力使我的代码更简单。
我原来的是:
print "Please give the name of your project."
project_name = raw_input()
哪位给了我: “请提供你项目的名称。” 测试
为了缩短它,我搬到了:
project_name = raw_input("Please give the name of your project.")
这给了我: “请提供你项目的名称。”测试
因此要求用户在提示后立即输入信息。我想在一条新线上。
答案 0 :(得分:4)
只需在提示中添加换行符:
project_name = raw_input("Please give the name of your project.\n")
答案 1 :(得分:1)
您可以输入换行符:
>>> project_name = raw_input("Please give the name of your project.\n")
Please give the name of your project.
myProject
>>> project_name
'myProject'
>>>
在提示字符串中,\n
会创建换行符。