基本操作
# 打开文件
file = open("README")
# 读取文件
text = file.read()
print(text)
# 关闭文件
file.close()
# 打开文件
src_file = open("README")
des_file = open("README[副本]", "w")
# 复制文件
while True:
text = src_file.readline()
if not text:
break
des_file.write(text)
# 关闭文件
src_file.close()
des_file.close()
文件编码
第一行,声明文件编码
# *_* coding:UTF-8 *_*
hello_str = "hello,你好"
print(hello_str)