文件操作
文件读取
>>> f = open('/Users/michael/test.txt', 'r')
r
表示读。
>>> f.read()
'Hello, world!'
>>> f.close()
引入with语句来自动帮我们调用close()方法:
with open('/path/to/file', 'r') as f:
print(f.read())
>>> f = open('/Users/michael/test.txt', 'r')
r
表示读。
>>> f.read()
'Hello, world!'
>>> f.close()
引入with语句来自动帮我们调用close()方法:
with open('/path/to/file', 'r') as f:
print(f.read())
本文标题:3-Python文件操作总结
本文链接:https://www.haomeiwen.com/subject/venlnftx.html
网友评论