Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1719987
  • 博文数量: 362
  • 博客积分: 10587
  • 博客等级: 上将
  • 技术积分: 4098
  • 用 户 组: 普通用户
  • 注册时间: 2009-09-10 18:15
文章分类

全部博文(362)

文章存档

2014年(1)

2013年(58)

2011年(115)

2010年(112)

2009年(76)

分类: Python/Ruby

2009-10-29 16:16:02

'maketextfile.py --- create text file'

import os
ls = os.linesep

# get filename
while True:
   
    if os.path.exists('C:\Python26\make.log'):
        print "ERROR: '%s' already exists" % ('C:\Python26\make.log')
    else:
        break

# get file content (text) lines
all=[]
print"\nEnter lines ('.'by itselef to quit).\n"

# loop until user terminates input
while True:
    entry = raw_input('>')
    if entry == '.':
        break
    else:
        all.append(entry)

# write lines to file with proper line-ending
fobj = open(r'C:\Python26\make.log','w')
fobj.writelines(['%s%s' % (x,ls) for x in all])
fobj.close()
print 'DONE!'

阅读(1215) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~