从用户输入创建文件

时间:2014-10-10 05:10:54

标签: python file

任何人都可以帮我完成这项任务。我是Python的新手。我试图完成这个: 文件名应该是硬编码名称:Server_Information.txt和第二列应该由用户输入插入但是日期戳。 建造者:约翰·多伊 建造日期:%d%m%y 建立理由:游乐场 请求者:john doe

也许我可以使用这个测试脚本,但第一列没有显示在最终的测试文件中。

感谢任何有帮助的人

from sys import argv

script, filename = argv

print "We're going to erase %r." % filename
print "If you don't want that, hit CTRL-C (^C)."
print "If you do want that, hit RETURN."

raw_input("?")

print "Opening the file..."
target = open(filename, 'w')

print "Truncating the file.  Goodbye!"
target.truncate()

print "Now I'm going to ask you for three lines."

line1 = raw_input("Built By : ")
line2 = raw_input("Build Date: %d%m%y ")
line3 = raw_input("Build Reason: ")
line4 = raw_input("Requestor: ")

print "I'm going to write these to the file."

target.write(line1)
target.write("\n")
target.write(line2)
target.write("\n")
target.write(line3)
target.write("\n")
target.write(line4)

print "And finally, we close it."
target.close()

3 个答案:

答案 0 :(得分:1)

尝试在truncate()

之后关闭并重新打开文件
 target.close()
 target = open(filename, 'w')
 # ask for user input here
 # and close file

答案 1 :(得分:0)

尝试编写此内容,因为现在您不会将邀请记录为文件。

target.write('%s: %s\n' % ('Built By', line1))
target.write('%s: %s\n' % ('Build Date', line2))
target.write('%s: %s\n' % ('Build Reason', line3))
target.write('%s: %s\n' % ('Requestor', line4))

答案 2 :(得分:0)

由于raw_input仅返回用户输入的输入,因此不包括您用于提示的消息,因此您需要手动将这些消息添加到line1,如下所示:

line1 = "Built By : " + raw_input("Built By : ")

对于line2我想你想自动生成它而不是要求用户输入,你可以这样做:

line2 = "Build Date: " + time.strftime("%d%m%Y", time.localtime())