我正在传递 args 之类的
python file.py arg1 arg2 arg3
我想知道是否有办法将这些 args 视为对象而不是以下代码的字符串:
one = sys.argv[1]
two = sys.argv[2]
three = sys.argv[3]
from one import two
a = two.three()
因为一二三将是字符串。如何将它们解析为对象?
更新:
pkg = import_module(two, package=one)
给
__import__(name)
ImportError: No module named <whatever_module_name>