python 创建新文件

这个脚本提醒用户输入一个(尚不存在的)文件名, 然后由用户输入该文件的每一行后, 将所有文本写入文本文件。 
    'make TextFile.py--create text file'

import os
ls = os.linesep
#get filename
fname = raw_input('enter the filename:')


while True:
    if os.path.exists(fname):
        print"Error:'%s'already exists"% fname
    else:
        break

#get file content (text) lines

all=[]
print"\nEnter lines ('.' by itself to quite ).\n"

#loop until user terminates input


while True:
    entry = raw_input("inputing:")
    if entry =='.':
        break
    else:
        all.append(entry)

#write lines to file with proper line-ending

fobj = open(fname,'w')
fobj.writelines(['%s%s'%(x,ls)for x in all])
fobj.close()
print 'DONE!'

运行界面:

python 创建新文件_第1张图片

python 创建新文件_第2张图片

因为时间有限代码解释就没有写的很详细。有问题可以留言。。。

你可能感兴趣的:(python)