在Python中使用format()函數進行對齊操作可以通過在花括號中添加冒號(:)和對齊格式進行控制。以下是一些示例:
text = "hello"
print("{:<10}".format(text))
# 輸出結果為:"hello "
text = "hello"
print("{:^10}".format(text))
# 輸出結果為:" hello "
text = "hello"
print("{:>10}".format(text))
# 輸出結果為:" hello"
在上面的示例中,數字10表示文本的總寬度,可以根據需要調整。可以使用<、^、>來分別表示左對齊、居中對齊和右對齊。