Chinaunix首页 | 论坛 | 博客
  • 博客访问: 266962
  • 博文数量: 30
  • 博客积分: 380
  • 博客等级: 一等列兵
  • 技术积分: 477
  • 用 户 组: 普通用户
  • 注册时间: 2012-05-30 21:28
文章分类

全部博文(30)

文章存档

2014年(2)

2013年(13)

2012年(15)

分类: 系统运维

2013-12-12 10:37:16

#!/usr/bin/python
'makeTextFile.py -- create text file'
import os,sys
ls = os.linesep
while True:
        if os.path.exists('a'):
                print "ERROR: '%s' already exists" % 'a'
#               break
                sys.exit()
        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('a', 'w')
fobj.writelines(['%s%s' % (x, ls) for x in all])
fobj.close()
print 'DONE!'


#!/usr/bin/python
'readTextFile.py'
fname = raw_input('Enter filename: ')
print


try:
        fobj = open(fname, 'r')
except IOError, e:
        print "*** file open error:", e
else:
        for eacheline in fobj:
                print eachline,
                fobj.close()



阅读(1653) | 评论(0) | 转发(0) |
0

上一篇:mysql_backup.py

下一篇:项目上央视了

给主人留下些什么吧!~~