赞
踩
内置函数open( )创造文件对象
语法规则:file = open(filename[, mode, encoding])
部分代码:
file = open('a.txt', 'r') # 只读方式打开a.txt
print(file.readlines()) # 按行读取内容,输出列表
file.close()
file = open('b.txt', 'w') # 只写方式打开b.txt,覆盖内容
file.write('python')
file.close()
file
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。