我想以编程方式检索在 Cloudera ML 平台上运行 python 脚本的当前作业中使用的脚本的名称。
__file__
我还能尝试什么?
你能尝试一下吗?
import sys sys.argv[0]
或
import inspect source_file_path = inspect.getfile(inspect.currentframe())