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

Python学习之路——初显身手

2015-03-16 20:13 337 查看

第一个Python程序

直接贴代码了。

makeTextFile.py:

#!/usr/bin/env python

'makeTextFile.py -- create text file'

import os
ls = os.linesep

#get filename
while True:
fname = raw_input('Please enter file name: ')
if os.path.exists(fname):
print 'Error: %s already exists' % fname
else:
break

#get file content (text) lines
all = []
print 'Enter lines (. by itself to quit).'

#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(fname, 'w')
fobj.writelines(['%s%s' % (x, ls) for x in all])
fobj.close()
print 'Done!'


readTextFile.py:

#!/usr/bin/env python

'readTextFile.py -- read and display text file'

#get filename
fname = raw_input('Please enter file name: ')
print

#attempt to open file for reading
try:
fobj = open(fname, 'r')
except IOError, e:
print '*** file open error:', e
else:
#display contents to the screen
for eachLine in fobj:
print eachLine,
fobj.close()
程序运行:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: