亲宝软件园·资讯

展开

Python-with open() as f的用法及说明

半岛铁盒@ 人气:0

Python-with open() as f的用法

with open(r'filename.txt') as f:
   data_user=pd.read_csv(f)  #文件的读操作

with open('data.txt', 'w') as f:
   f.write('hello world')  #文件的写操作

相关参数

file对象的属性

一道例题

将ecb.bmp的前128字节替换为bmp文件格式特有的字节的脚本

from Crypto.Util.number import long_to_bytes

with open('ecb.bmp','rb') as f:  #读入
    data=f.read()
pre=0x424d76483f00000000007600000028000000000f000070080000010004000000000000483f00000000000000000000000000000000000000000000008000008000000080800080000000800080008080000080808000c0c0c0000000ff0000ff000000ffff00ff000000ff00ff00ffff0000ffffff00ffffffffffffffffffffL
out=long_to_bytes(pre)+data[128:]

with open('out.bmp','wb') as g:    #写入
    g.write(out)

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。

加载全部内容

相关教程
猜你喜欢
用户评论