码迷,mamicode.com
首页 > 其他好文 > 详细

print输出格式总结

时间:2019-10-26 21:19:43      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:字符串   居中   img   字符   对齐   div   ima   for   src   

通过使用ljust(),center(),rjust()函数来实现输入字符串的左右对齐,居中,右对齐等操作;

方法一:(函数不带参数,则默认以空格填充,注意:文字与空格总字符数等于输入的数字)

print("|","Ursula".ljust(20),"|") # 左对齐
print("|","Ursula".center(20),"|") # 居中对齐
print("|","Ursula".rjust(20),"|") # 右对齐

方法二:(函数带参数,则以参数作为填充字符)
print("|","Ursula".ljust(20,"*"),"|") # 左对齐
print("|","Ursula".center(20,"*"),"|") # 居中对齐
print("|","Ursula".rjust(20,"*"),"|") # 右对齐
运行结果:
| **************Ursula |
| *******Ursula******* |
| Ursula************** |
————————————————

1 for i in range(1,50,2):
2     print((**i).center(80))
3 for i in range(1,10):
4     print((**11).center(80))

技术图片

 

print输出格式总结

标签:字符串   居中   img   字符   对齐   div   ima   for   src   

原文地址:https://www.cnblogs.com/bcyczhhb/p/11745173.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!