首页 > 编程语言 > 详细

python中字符串的常用拼接

时间:2020-12-26 17:52:47      阅读:31      评论:0      收藏:0      [点我收藏+]

 

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中字符串的常用拼接

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!