1.利用python读取文件
(1)Python引入了with语句来自动帮我们调用close()方法
<1>读取指定路径下的文件
with open(\'/path/to/file\', \'r\') as f: print(f.read())
1.利用python读取文件
(1)Python引入了with语句来自动帮我们调用close()方法
<1>读取指定路径下的文件
with open(\'/path/to/file\', \'r\') as f: print(f.read())
内容版权声明:除非注明,否则皆为本站原创文章。