2、rjust()方法是在字符串左侧填充指定字符。
从而达到右对齐文本的目的。
3、center()方法用于使文本居中,而非左对齐或右对齐。...print("通过-实现左对齐", str1.ljust(30, '-'))
print("通过-实现左对齐", str2.ljust(30, '-'))
print("通过-实现右对齐", str1.rjust...(30, '-'))
print("通过-实现右对齐", str2.rjust(30, '-'))
print("通过-实现居中对齐", str1.center(30, '-'))
print("通过-