- 博客(1)
- 收藏
- 关注
原创 Python学习小笔记with语句
Python引入了with语句来自动帮我们调用close()方法: eg: f = open('/path/to/file', 'r') print(f.read()) f.close() 等价于: with open('/path/to/file', 'r') as f: print(f.read()) -----------------------------
2017-12-14 16:53:43 130
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人