对于一个项目,我需要一个程序询问比赛名称,在另一个问题中使用该名称。
下面的代码有效。
主要问题是我需要将时间作为一个值输入并保存,以便我以后可以计算它,但是在一行中打印,说time = """""
, 不起作用。
关于如何解决这个问题的任何建议?
def main():
print "~*~*~*~*~*~ Timbuktu Archery Contest ~*~*~*~*~*~"
archerList = [] #list
name = raw_input ("Enter contestants first name: ")
s = str(name)
archerList.append(name)
print "Enter time (in milliseconds) for " + s , raw_input (": ")
main()