Python字符串拼接详解

Python字符串拼接有以下5种常规方式

逗号 ,  

加号 +  

直接拼接

格式化拼接

字符串函数join拼接 join  

方法1/2 - 使用逗号或者加号进行拼接

逗号拼接会额外带有一个空格。

#code a = 'are' b = 'you' c = 'ok' print(a, b, c) print(a + b +c) #output are you ok areyouok

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wpfxgz.html