python中的文件覆盖和追加
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中的文件覆盖和追加相关的知识,希望对你有一定的参考价值。
#!/usr/local/bin/python import sys import time havevalue = 0 while havevalue < 1:         try:                 table = input("What table to you want? ")                 havevalue=1         except:                 print "Looking for a number" counter = 1 save = open("tabout.txt","w") while counter <= 12:         result = table * counter         print counter,"time",table, "is",result         save.write (str(counter) " times "                  str(table)  " is "                  str(result)  " ")         counter = counter  1 print "Counter ends at",counter save.close(); handle = open("logfile.txt","a") logline = [] logline.append(sys.argv[0]) logline.append(str(time.time())) logline.append(str(table)) handle.write((" ".join(logline)) " ") handle.close()
以上是关于python中的文件覆盖和追加的主要内容,如果未能解决你的问题,请参考以下文章