将输出定向到.txt文件并自动命名文件

时间:2013-02-24 13:37:23

标签: output raspberry-pi

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

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

1 个答案:

答案 0 :(得分: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