码迷,mamicode.com
首页 > 编程语言 > 详细

Python检验一个文件是否存在,如果不在就自己填写内容。

时间:2015-02-04 20:15:43      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:

  1. import os  
  2. while True:  
  3.     filename=input(‘Please enter the filename‘)  
  4.     if os.path.exists(filename):  
  5.         print(‘the file is exist‘)  
  6.         break  
  7.     else:  
  8.         all=[]  
  9.         while True:  
  10.             content=input(‘>‘)  
  11.             if content==‘.‘:  
  12.                 print(‘Exit‘)  
  13.                 break  
  14.             else:  
  15.                 all.append(content)  
  16.         fobj=open(filename,‘w‘)  
  17.         str_list=[i+‘\n‘for i in all]  
  18.         fobj.writelines(str_list)  
  19.         fobj.close()  
  20.         break  

Python检验一个文件是否存在,如果不在就自己填写内容。

标签:

原文地址:http://www.cnblogs.com/wspblog/p/4273102.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!