1:输出格式化:
对齐方式:星号用于加强显示效果,默认是空白
print ‘{:<30}’.format(‘左对齐’) # 左对齐************
print ‘{:>30}’.format(‘右对齐’) # ************右对齐
print ‘{:^30}’.format(‘居中对其’) # **居中对其*
字符串处理相关文章:http://blog.mcxiaoke.com/2015/07/15/python-module-string-notes/
1:输出格式化:
对齐方式:星号用于加强显示效果,默认是空白
print ‘{:<30}’.format(‘左对齐’) # 左对齐************
print ‘{:>30}’.format(‘右对齐’) # ************右对齐
print ‘{:^30}’.format(‘居中对其’) # **居中对其*
字符串处理相关文章:http://blog.mcxiaoke.com/2015/07/15/python-module-string-notes/