笨办法22到目前为止你学到了什么?

时间:2021-05-02 15:43:07

结合之前学的内容,写了一小段

from sys import argv
script, filename1, filename2 = argv

def add(a, b, c):
return a + b + c
def rewind(f):
f.seek(0)

file1 = open(filename1, 'w')

plus = add("\t 12345 \n", "I'll play a game with you\n" , "R u ok?")
file1.write(plus)

rewind(file1)

line1 = raw_input("Write the next line:")
file1.write(line1)

file1.close()

open(filename2, 'w').write(open(filename1).read())

print open(filename2).read()

运行结果:
笨办法22到目前为止你学到了什么?
由运行结果可见,当使用seek,plus变量中的\t作为单独的一个字符来处理了

如果把seek这行注销,运行结果如下:
笨办法22到目前为止你学到了什么?
此时,\t作为制表符显示在文件中


然而原因我也没搞明白╮(╯_╰)╭