返回顶部
首页 > 资讯 > 后端开发 > Python >Python笔记(二)文本的创建和读取
  • 870
分享到

Python笔记(二)文本的创建和读取

文本笔记Python 2023-01-31 02:01:58 870人浏览 薄情痞子

Python 官方文档:入门教程 => 点击学习

摘要

学习python已有数日,这是今天的战利品:   1.创建文本(createtext.py) 程序如下: #create text file   import osls = os.linesep print("******create fi

学习python已有数日,这是今天的战利品:
 
1.创建文本(createtext.py)
程序如下:
#create text file
 
import os
ls = os.linesep
print("******create file******")
 
#get filename
while True:
    fname = input("enter your file name:")
    if os.path.exists(fname):
        print("error: '%s' already exists"%fname)
    else:
        break
 
#get file content 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.读取文本文件(readtext.py)
程序如下:
#read and dislay text file
print("read and dislay text file")

fname = input("Enter filename:")
print        #display a empty line
#attempt to open file for reading
try:
    fobj = open(fname, 'r')
except ioError:
    print("file open error:")
else:
    #display contents
    print('_ '*10,)
    for eachLine in fobj:
        print(eachLine,end = '') #end参数,默认为'\n'
    fobj.close()
print('_ '*10)
print("Done")
 
程序验证:
 
 
 
Let me Go on...

--结束END--

本文标题: Python笔记(二)文本的创建和读取

本文链接: https://lsjlt.com/news/186455.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作