python 文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 文件相关的知识,希望对你有一定的参考价值。
在python命令行中打开文件为
注意命令行要加单引号,否则会报错
命令行的2种读/打开方式
1 >>> txt = open(‘15_sample.txt‘) 2 >>> print txt.read() 3 this is stuff I typed into a file 4 It‘s really cool stuff 5 Lots and lots of fun to have in here 6 7 >>> txt.close() 8 >>> txt = open(15_sample.txt) 9 File "<stdin>", line 1 10 txt = open(15_sample.txt) 11 ^ 12 SyntaxError: invalid syntax 13 >>> 14 >>> 15 >>> print(open(‘15_sample.txt‘).read()) 16 this is stuff I typed into a file 17 It‘s really cool stuff 18 Lots and lots of fun to have in here
在.py的文件中
在文件中可以看到open不需要加单引号,因为argv读入的输入文件是以字符串形式读入。
两种打开方式
打开文件后记得用
txt.close()关闭文件。
以上是关于python 文件的主要内容,如果未能解决你的问题,请参考以下文章
Android 逆向使用 Python 解析 ELF 文件 ( Capstone 反汇编 ELF 文件中的机器码数据 | 创建反汇编解析器实例对象 | 设置汇编解析器显示细节 )(代码片段