📜  python 从同一目录读取文件 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:53.891000             🧑  作者: Mango

代码示例2
f = open(os.path.join(sys.path[0], "test.html"), "r")
print(f.read())
f.close()