Python文件和目录操作详解

630次阅读  |  发布于5年以前

一、文件的打开和创建

1、打开

复制代码 代码如下:

open(file,mode):

fo = open('test.txt', 'r')
fo.read()
'hello\n'
fo.close()
file(file,mode):

f = file('test.txt', 'r')
f.read()
'hello\n'
f.close()

Copyright© 2013-2020

All Rights Reserved 京ICP备2023019179号-8