1.使用ljust,rjust,center方法
ljust,rjust,center这三个方法都可以设定对齐长度,填充字符。
直接上测试代码
text="我是字符串"; print(text); print(text.ljust(20)); print(text.rjust(20)); print(text.center(20)); print(text.ljust(20,'/')); print(text.rjust(20,'~')); print(text.center(20,"*"));
2.使用format方法
format方法同样可以用来对齐字符串 <左对齐 >右对齐 ^中间对齐
text="我是字符串"; print(text); print(format(text,"<20")); print(format(text,">20")); print(format(text,"^20"));
以上就是小编搜集python3输出print对齐的方法。大家可以参照代码自行练习,不会的可以多练几遍。毕竟知识是一天天累积起来的,相信大家都在学python中一点点进步。