我目前正在写代码的空格。字符串,使用Python的格式规范的迷你语言 :
print('''{user:<10}, you're welcome!'''.format(user='John Doe'))
输出是:
John Doe , you're welcome!
但是,如果用户的名字是一样的东西“Joooooooooooohn李四”,我想输出:
Jooooooooo, you're welcome!
是否有使用格式规范的迷你语言进行截断和填充的方法吗?
谢谢!