python中的文件覆盖和追加

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中的文件覆盖和追加相关的知识,希望对你有一定的参考价值。

  1. #!/usr/local/bin/python
  2.  
  3. import sys
  4. import time
  5.  
  6. havevalue = 0
  7.  
  8. while havevalue < 1:
  9.         try:
  10.                 table = input("What table to you want? ")
  11.                 havevalue=1
  12.         except:
  13.                 print "Looking for a number"
  14.  
  15. counter = 1
  16.  
  17. save = open("tabout.txt","w")
  18. while counter <= 12:
  19.         result = table * counter
  20.         print counter,"time",table, "is",result
  21.         save.write (str(counter) " times "  
  22.                 str(table)  " is "  
  23.                 str(result)   " ")
  24.         counter = counter   1
  25.  
  26. print "Counter ends at",counter
  27. save.close();
  28.  
  29. handle = open("logfile.txt","a")
  30. logline = []
  31. logline.append(sys.argv[0])
  32. logline.append(str(time.time()))
  33. logline.append(str(table))
  34. handle.write((" ".join(logline)) " ")
  35. handle.close()

以上是关于python中的文件覆盖和追加的主要内容,如果未能解决你的问题,请参考以下文章

python基础--文件操作

python文件和数据格式化

python试题

Python文件操作

python关于文件的操作

python----------文件操作