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

python中字符串的常用拼接

时间:2020-12-31 11:56:50      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:python   code   color   style   rgb   test   class   join   pre   

 

1、 + 号拼接

>>> test1 = "abcd"
>>> test2 = "opqr"
>>> test3 = "xyzh"
>>> test1 + test2
abcdopqr
>>> test2 + test3
opqrxyzh
>>> test2 + test1 + test3
opqrabcdxyzh

 

2、 % 号拼接

>>> test1 = "the price of apple:"
>>> test2 = 20.55666
>>> "%s is %.1f !" % (test1,test2)
the price of apple: is 20.6 !
>>> test3 = "mmmm"
>>> test4 = "nnnn"
>>> "test3 + test4 is %s+%s" % (test3,test4)
test3 + test4 is mmmm+nnnn

 

3、join拼接

>>> test1 = ["aaa","ccc","xxx","mmm"]
>>> "_".join(test1)
aaa_ccc_xxx_mmm
>>> test1 = ("aaa","ccc","xxx","mmm")
>>> "_".join(test1)
aaa_ccc_xxx_mmm

 

python中字符串的常用拼接

标签:python   code   color   style   rgb   test   class   join   pre   

原文地址:https://www.cnblogs.com/liujiaxin2018/p/14192097.html

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