format在python左右对齐
时间: 2024-03-03 12:43:29 浏览: 216
python 实现文本左右对齐
在 Python 中,可以使用 format 函数来进行字符串格式化。要进行左对齐或右对齐,可以使用 "<" 或 ">" 符号加上相应的宽度来指定对齐方式。例如:
```
# 左对齐
>>> "{:<10}".format("hello")
'hello '
# 右对齐
>>> "{:>10}".format("hello")
' hello'
```
阅读全文