我想左对齐字符串的右侧部分。我正在编写一个 IRC Bot 的 HELP 命令,我希望描述在整个过程中保持相同的宽度:
List of commands:
## ! Say a Text
## execute Execute an IRC command
## help Help for commands
ljust适用于整个字符串,但我如何仅对字符串的一部分执行此操作?
这是我当前生成字符串的代码:
format.color( "## ", format.LIME_GREEN ) + self.commands[ cmd ][1].__doc__.format( format.bold( cmd ) ).splitlines()[0].strip()