python字符串左对齐、右对齐、居中的演示代码

2022-03-11 00:00:00 字符串 居中 对齐

python字符串对其居中的演示代码,下面的代码可以让字符串居中,左对齐和右对齐,字符串长度设置为50,居中后左右补充空格,右对齐会在左侧补充空格

"""
作者:皮蛋编程(https://www.pidancode.com)
创建日期:2022/3/21
功能描述:python字符串左对齐、右对齐、居中的演示代码
"""
string1 = "www.pidancode.com"
print(string1.center(50))
print(string1.rjust(50))
print(string1.ljust(50))

输出:

                www.pidancode.com                 
                                 www.pidancode.com
www.pidancode.com                                 

以上代码在Python3.9测试通过

相关文章