Python强大的格式化format

2018-03-27  本文已影响12人  shuff1e
>>> '{0:<8}{1:>3}'.format('hello',"world")
'hello   world'
>>> 
KeyboardInterrupt
>>> print '{0:<8}{1:>3}'.format('hello',"world")
hello   world
上一篇 下一篇

猜你喜欢

热点阅读