- 博客(2)
- 收藏
- 关注
转载 python字符串格式化之%s、%d、%f的使用
%s (字符串格式) string="hello" #%s打印时结果是hello print "string=%s" % string # output: string=hello #%2s意思是字符串长度为2,当原字符串的长度超过2时,按原长度打印,所以%2s的打印结果还是hello print "string=%2s" % string # output: string=hello #%7s意思是字符串长度为7,当原字符串的长度小于7时,在原字符串左侧补空格, #所以%7s的打印
2020-11-07 22:25:38 1397 2
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人