我目前正在使用 Python 的格式规范迷你语言编写用空格填充字符串的代码:
print('''{user:<10}, you're welcome!'''.format(user='John Doe'))
输出是:
John Doe , you're welcome!
但是,如果用户的名字类似于'Jooooooooooooohn Doe',我想输出:
Jooooooooo, you're welcome!
有没有办法使用格式规范迷你语言执行截断和填充?
谢谢!