python读写文件的方法

发布时间:2020-09-17 11:39:57 作者:小新
来源:亿速云 阅读:154

python读写文件的方法?这个问题可能是我们日常学习或工作经常见到的。希望通过这个问题能让你收获颇深。下面是小编给大家带来的参考内容,让我们一起来看看吧!

python怎么读写文件?

读取操作

# 一次性读取整个文件内容
with open('致橡树.txt', 'r', encoding='utf-8') as f:
    print(f.read())
# 通过for-in循环逐行读取
with open('致橡树.txt', mode='r') as f:
    for line in f:
        print(line, end='')
        time.sleep(0.5)
print()
# 读取文件按行读取到列表中
with open('致橡树.txt') as f:
    lines = f.readlines()
print(lines)

写入操作

import csv
class Teacher(object):
    def __init__(self, name, age, title):
        self.__name = name
        self.__age = age
        self.__title = title
        self.__index = -1
    @property
    def name(self):
        return self.__name
    @property
    def age(self):
        return self.__age
    @property
    def title(self):
        return self.__title
filename = 'teacher.csv'
teachers = [Teacher('骆昊', 38, '叫兽'), Teacher('狄仁杰', 25, '砖家')]
try:
    with open(filename, 'w') as f:
        writer = csv.writer(f)
        for teacher in teachers:
            writer.writerow([teacher.name, teacher.age, teacher.title])
except BaseException as e:
    print('无法写入文件:', filename)
else:
    print('保存数据完成!')
with open('prime.txt', 'w') as f:
    for num in range(2, 100):
        f.write(str(num) + '\n')

感谢各位的阅读!看完上述内容,你们对python读写文件的方法大概了解了吗?希望文章内容对大家有所帮助。如果想了解更多相关文章内容,欢迎关注亿速云行业资讯频道。

推荐阅读:
  1. Python学习笔记:读写文件
  2. python如何读写文件

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

python

上一篇:ISO文件属于什么文件

下一篇:如何查看python安装路径

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》