您的位置:首页 > 编程语言 > Python开发

第一个python实例程序

2016-04-06 00:02 651 查看
#!/usr/bin/python2.7

import os
ls = os.linesep

fname = raw_input("fname:");

while True:

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

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

while True:
entry = raw_input('> ')

if entry == '.':
break
else:
all.append(entry)

fobj = open(fname, 'w')
fobj.writelines(['%s%s' % (x, ls) for x in all])
fobj.close()
print 'DONE!'
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: