【发布时间】:2017-02-06 02:13:45
【问题描述】:
尝试将 target.write 与格式化程序组合成一行,但现在收到错误:
TypeError: unsupported operand type(s) for %: 'NoneType' and 'tuple'
target.write(line1)
target.write("\n")
target.write(line2)
target.write("\n")
target.write(line3)
target.write("\n")
现在:
target.write("%s, %s, %s") % (line1, line2, line3)
使用时同样的错误:
target.write("%r, %r, %r") % (line1, line2, line3)
完整文件如下:
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("line 1: ")
line2 = raw_input("line 2: ")
line3 = raw_input("line 3: ")
print "I'm going to write these to the file."
target.write("%s, %s, %s") % (line1, line2, line3)
print "And finally, we close it."
target.close()
【问题讨论】:
标签: python python-2.7 tuples formatter nonetype