此刻,我的python项目通过“硬编码”文件路径打开一个csv文件。
readFromCsv(filePath='home/vm/user/test.csv')
我的Python项目通过控制台打开,如:
python myproject.py config.cfg
并且根据配置文件,还有其他csv文件的其他路径
with open(sys.argv[1], 'r') as input_file:
filePath = input_file.readline().rstrip("\n")
是否可以解析以下函数调用起作用的变量的文件路径?
readFromCsv(filePath)
非常感谢!