手机
当前位置:查字典教程网 >脚本专栏 >python >Python ljust rjust center输出
Python ljust rjust center输出
摘要:看下面的例子就会明白了:复制代码代码如下:print'|','*'.ljust(10),'|'print'|','*'.ljust(10,'...

看下面的例子就会明白了:

复制代码 代码如下:

print '|','*'.ljust(10),'|'

print '|','*'.ljust(10,'-'),'|'

print '|','*'.rjust(10,'-'),'|'

print '|','*'.center(10,'-'),'|'

for a in range(1, 6):

print 'a = '.ljust(5), repr(a).ljust(10), 'b = '.ljust(5), repr(a * 2)

输出结果:

| * |

| *--------- |

| ---------* |

| ----*----- |

a = 1 b = 2

a = 2 b = 4

a = 3 b = 6

a = 4 b = 8

a = 5 b = 10

【Python ljust rjust center输出】相关文章:

python pdb调试方法分享

python 解析html之BeautifulSoup

Python logging模块学习笔记

python访问sqlserver示例

Python 错误和异常小结

Python 第一步 hello world

python pickle 和 shelve模块的用法

Python Trie树实现字典排序

python在linux中输出带颜色的文字的方法

Python中的CURL PycURL使用例子

精品推荐
分类导航