我是python的新手并且编写代码。我想将用户输入的输出定向到.txt文件(如果可能)。如果可能的话,在第3行的输入后命名。感谢您提供任何帮助或建议
userName = raw_input("login = ")
print "Welcome,", userName
number = raw_input("ID number = ")
weight = raw_input("Weight = ")
答案 0 :(得分:1)
在Python中写入文件很容易:
f = open(number + '.txt', 'w') #create a file using the given input
f.write(userName + " " + weight)
f.close()