python读取文件到字节数组
python读取文件到字节数组,一下代码读取当前目录下的pidancode.com.txt文件的字节内容
""" 作者:皮蛋编程(https://www.pidancode.com) 创建日期:2022/3/21 功能描述:python读取文件到字节数组 """ def get_bytes_from_file(filename): return open(filename, "rb").read() print(get_bytes_from_file('./pidancode.com.txt'))
以上代码在python3.9环境测试通过
相关文章