Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要编写程序来更改特定地址中文件中的字节。我只能使用 python 2.2 它是游戏的模块,所以......我读过一次关于 mmap 的文章,但我在 python 2.2 中找不到它
您最好的选择是直接操作文件;这适用于 Python 版本,即 1.x、2.x、3.x。这里有一些粗略的大纲可以帮助您入门......如果您执行实际的伪代码,如果不是完全正确的 Python,它可能会非常接近:
tell()
write()
close()