1-格式化输出: %
1.print(‘我的姓名是%s,身高%s cm’%(name,height))
2.%s —str() ; %d–十进制
3.传入值的时候一定是个元组,不是列表
4.当指定长度时:
浮点数:
字符串:
2-格式化输出: format
特性:字符串的format方法
1-顺序填坑:{}-坑 ‘名字是:{},年龄是:{}’.format(‘tom’,16,170)
2-下标填坑:‘名字是:{0},年龄是:{2}’.format(‘tom’,16,170)
3-变量填坑:‘名字是:{name},年龄是:{age}’.format(name =‘tom’,age = 16)
4-指定长度输出:
1-{:5}–指定输出长度=5
1- 字符串 {:5}–左对齐
2- 数值-- {:5}–右对齐
2-使用 > < --避免字符串/数值对齐方法不一致
1- > 右对齐
2- < 左对齐
3- 中间对齐 ^