栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

python中创建文件和读取文件

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

python中创建文件和读取文件

1.创建文件(makeTextFile.py)
'makeTextFile.py -- create text file'
import os
ls = os.linesep

#get filename
while True:

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

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

# loop until user terminates input
while True:
    entry = 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!")
2.读取文件(readTextFile.py)
'readTextFile.py -- read and display text file'

#get filename
fname = input("Enter filename:")
print()

#attempt to open file for reading
try:
    fobj = open(fname,"r")
except IOError:
    print("fname file open error",fname)
else:
    #display contents to the screen
    for eachLine in fobj:
        print(eachLine)
    fobj.close()

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/675066.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号