txtConvert.py 413 B

12345678910111213141516171819202122232425
  1. #coding=utf-8
  2. '''
  3. Created on 2017年8月29日
  4. @vsersion:python 3.6
  5. @author: liuyuqi
  6. '''
  7. def readTxt(filePath):
  8. f=open(filePath)
  9. text=f.read()
  10. f.close()
  11. return text
  12. def writeTxt():
  13. f=open('../data/data.txt', 'w')
  14. f.write('hello========hello======\n hello\n')
  15. f.close()#一定要记得close,否则其他软件打开为只读
  16. filePath=""
  17. def main():
  18. readTxt(filePath)
  19. main()