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.
目前我使用
parser.add_argument('--version', action='version', version='%(prog)s 1.0')
我想让'1.0'成为一个变量。
我尝试了各种没有运气的事情......
只需使用字符串格式:
version = '1.0' parser.add_argument('--version', action='version', version='%(prog)s {}'.format(version))
您的程序版本在它的(简短,仅显示命令行帮助)生命周期内不会更改,因此您只需插入一次。