Python---文件open函数

本文详细介绍了Python中的文件操作,包括不同模式如'r'、'w'、'a'、'b'等的含义及其使用场景。通过实例展示了如何打开和读取文本文件以及二进制文件,如读取txt和jpg文件。同时,讲解了read、readlines、readline等方法的用法,以及如何判断文件是否可读。
摘要由CSDN通过智能技术生成

Python从入门到高手(内部资源-配学习资料)_哔哩哔哩_bilibili

# 文件操作
# Mode:r w rb wb   r:read  w:write  b:binary   r,w纯文本文件    rb,wb纯文本,图片,音乐,电影
''':cvar
文件上传
保存log
系统函数:
open()
open(file, mode='r', buffering=None, encoding=None)
Character Meaning
    --------- ---------------------------------------------------------------
    'r'       open for reading (default)
    'w'       open for writing, truncating the file first
    'x'       create a new file and open it for writing
    'a'       open for writing, appending to the end of the file if it exists
    'b'       binary mode
    't'       text mode (default)
    '+'       open a disk file for updating (reading and writing)
    'U'       universal newline mode (deprecated)

    读:
    open(path/filename,'rt')---->返回值:stream(管道)
    container=stream.read()--->读取管道中内容
    注意:如果传递的path/filename有误,则会报错:FileNotFoundError
    如果是图片则不能使用默认的读取方式,mode='rb'
    总结:
    read() 读取所有内容
    readlines() 读取所有的行保存到列表中
    readline()  每次读取一行内容
    readable()  判断是否可读
'''

stream = open(r'C:\Users\RSB\Desktop\Python文件夹\aa.txt')
# container = stream.read()
# print(container)

# result = stream.readable()  # 判读是否可以读取
# print(result)
# while True:
#     line = stream.readline()  # 如果前面读取过后,就无法再次读取了
#     print(line)
#     if not line:
#         break

lines = stream.readlines()  # 保存到列表中
print(lines)
for i in lines:
    print(i)

stream = open(r"C:\Users\RSB\Desktop\Python文件夹\bird.jpg", 'rb')
container = stream.read()
print(container)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值