赞
踩
open()
函数来实现的。语法: open(file, mode="r", encoding="utf-8")
示例:
# 打开文件
file = open('example.txt', 'r', encoding='utf-8')
# 读取文件内容
content = file.read()
print(content)
# 关闭文件
file.close()
# 打开文件进行写入,如果文件存在,则覆盖原有内容
file = open('C:\\Users\\ABC\\Desktop\\example.txt', 'w', encoding='utf-8')
# 写入内容到文件
file.write("Hello, Python!\n")
file.write("Adding another line.")
# 关闭文件
file.close()
这个例子展示了如何打开一个文件,逐行读取文件的内容,然后关闭文件:
# 打开文件
file = open('C:\\Users\\ABC\\Desktop\\example.txt', 'r', encoding='utf-8')
# 逐行读取文件
for line in file:
print(line.strip()) # strip() 用于去掉行末的换行符
# 关闭文件
file.close()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。