在Python中,可以使用字符串的format()方法来控制打印输出的对齐方式。
例如,可以使用如下的代码来左对齐打印输出:
print("{:<10}".format("hello"))
其中,<
表示左对齐,10
表示总的输出宽度为10个字符,如果字符串长度不足10个字符,则在右侧填充空格。
同理,右对齐可以使用>
,居中可以使用^
,例如:
print("{:>10}".format("hello")) # 右对齐
print("{:^10}".format("hello")) # 居中对齐