我正在使用多个 python 程序。每个程序都传递了不同的参数集(如以下情况)。
python program_1.py --filename "path_to_a_file" --length 50
python program_2.py --filename "path_to_another_file" --labelled True --length 50 --dimension 3
在ubuntu中我没有问题,我可以创建一个shell脚本。但最终的要求是制作一个windows exe。我很想知道是否可以使用通过 argparse 模块传递的参数创建单个 exe(用于多个程序)。
将传递的参数是整数、字符串、输入文件的路径等,如图所示。
期待一些帮助。
非常感谢