# 获得文件对象 读模式
f = open("abc.txt", "r", encoding="utf8")
# 读取内容
content = f.read()
# 关闭文件
f.close()
# 输出内容
print(content)