Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 Python 脚本上运行cProfile,该脚本使用ArgumentParser来解析从命令行给出的参数。在参数中,脚本用于数据输入的两个文件名。
我想知道我是否能够通过cProfile以某种方式提供参数,以便能够使用实际数据分析我的函数。
非常感谢您提前。
您可以像往常一样在命令行上传递它们。
python -m cProfile -s time my_app.py <args>