Python基础
asyher
这个作者很懒,什么都没留下…
展开
-
Python 占位符格式化详解
Python占位符格式转载 2020-11-15 14:16:44 · 304 阅读 · 0 评论 -
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 · 1396 阅读 · 2 评论