在Python中,可以使用字符串的format()方法來控制打印輸出的對齊方式。
例如,可以使用如下的代碼來左對齊打印輸出:
print("{:<10}".format("hello"))
其中,<
表示左對齊,10
表示總的輸出寬度為10個字符,如果字符串長度不足10個字符,則在右側填充空格。
同理,右對齊可以使用>
,居中可以使用^
,例如:
print("{:>10}".format("hello")) # 右對齊
print("{:^10}".format("hello")) # 居中對齊