在python中,如何创建文件对象?
提问人:杨紫红发布时间:2020-11-23
a) 内置函数open()同file() :用于打开文件和创建文件对象,返回文件对象
b) with打开文件:with open('password') as f : #f = file('password')
c) 语法格式:open(文件名,模式)例如:
继续查找其他问题的答案?
相关视频回答
回复(0)
a) 内置函数open()同file() :用于打开文件和创建文件对象,返回文件对象
b) with打开文件:with open('password') as f : #f = file('password')
c) 语法格式:open(文件名,模式)例如:
点击加载更多评论>>