最佳答案
我有一个带有 docstring 的 Python 脚本。当命令行参数的解析不成功时,我想打印用户信息的 docstring。
有什么办法吗?
#!/usr/bin/env python
"""
Usage: script.py
This describes the script.
"""
import sys
if len(sys.argv) < 2:
print("<here comes the docstring>")