在python中,如何創(chuàng)建文件對象?
提問人:楊紫紅發(fā)布時間:2020-11-23
a) 內(nèi)置函數(shù)open()同file() :用于打開文件和創(chuàng)建文件對象,返回文件對象
b) with打開文件:with open('password') as f : #f = file('password')
c) 語法格式:open(文件名,模式)例如:
繼續(xù)查找其他問題的答案?
相關視頻回答
a) 內(nèi)置函數(shù)open()同file() :用于打開文件和創(chuàng)建文件對象,返回文件對象
b) with打開文件:with open('password') as f : #f = file('password')
c) 語法格式:open(文件名,模式)例如:
點擊加載更多評論>>