标签: python operating-system
我已经读过规范化文件路径允许脚本在任何操作系统上运行。假设我有以下脚本打开一个名为hello.txt的文件
import os os.path.normpath(os.getcwd()) a= open("hello.txt","r") b= a.read() print(b)
如果我将文件夹中的脚本发送给某人,并且hello.txt文件位于同一文件夹中,此脚本现在是否可以在任何操作系统上运行?或者我必须做其他事情
hello.txt