文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>创建文件

创建文件

时间:2011-04-23  来源:孤独的猫

创建和读出文件p2.py和p3.py

#!/usr/bin/python
import os
ls=os.linesep
fname = raw_input('Enter filename: ')
print

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')
执行python p2.py


读出文件
#!/usr/bin/env Python
'readTextFile.py -- read and display text file'
# get filename
fname = raw_input('Enter filename: ')
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()

执行python p3.py                                                             

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载