1

我是 python 新手,一般都在编写代码。我想将用户输入的输出定向到 .txt 文件(如果可能)。如果可能的话,在第 3 行的输入之后命名它。感谢您的任何帮助或建议

userName = raw_input("login = ")
print "Welcome,", userName
number = raw_input("ID number = ")
weight = raw_input("Weight = ")
4

1 回答 1

1

在 Python 中写入文件非常简单:

f = open(number + '.txt', 'w') #create a file using the given input
f.write(userName + " " + weight)
f.close()

如需进一步参考:http ://docs.python.org/2/tutorial/inputoutput.html

于 2013-02-25T13:56:36.217 回答