我正在使用 optparse 处理命令行参数,并且遇到了 optparse 帮助消息的多个空格行的问题。
group.add_option(
'-H',
'--hostname',
action='store',
dest='hostname',
help='Specify the hostname or service/hostname you want to connect to\
If specified -f/--hostfile will be ignored',
metavar='HOSTNAME',)
因此,在帮助消息中的“to”之后,我在帮助消息中得到了几个空格(因为缩进)。
Specify the hostname or service/hostname you want to connect
to If specified -f/--hostfile will be ignored
我可以删除帮助消息第二行中的前导空格,但那将是不合情理的。
是否有一些pythonic方法可以删除帮助消息中的空格。