读
with open( '/path/to/file', 'r' ) as f:
print( f.read() )
写
with open('/Users/michael/test.txt', 'w') as f:
f.write('Hello, world!')
读
with open( '/path/to/file', 'r' ) as f:
print( f.read() )
写
with open('/Users/michael/test.txt', 'w') as f:
f.write('Hello, world!')
os.mknod("test.txt") 创建空文件 fp = open("test.txt",w) 直接打开一个文件,如果文件不存在则创建文件 关于open 模式:&nbs
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M