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