码迷,mamicode.com
首页 > 编程语言 > 详细

python 字符串格式化

时间:2018-06-23 13:17:25      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:ice   pytho   用法   mat   format   格式   字符   form   hello   

1,基本用法

  1,正常拼串

    s1 = ‘%s aaa %s‘(‘alice‘,‘bob‘)

  2.format

   不带编号

   s1 = ‘{} aaa {}‘

   s1.format(‘hello‘,‘world‘)

   带编号

   s1 = ‘{1} aaaa {2} bbb {1}‘

   s.format(‘hello‘,‘world‘)

   hello aaaa world hello

  命名

  s1 = ‘{a} aaa {b} bbbb {a}‘

  s.format(a=‘hello‘,b=‘world‘)

 

python 字符串格式化

标签:ice   pytho   用法   mat   format   格式   字符   form   hello   

原文地址:https://www.cnblogs.com/yitiaodahe/p/9216675.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!