"""
_*_ coding : utf-8 _*_
@Time : 2023/1/22 19:11
@Author : 软柠柠吖
@Description : 字符串拼接
字面量和变量或变量和变量之间会使用拼接,通过 + 号即可完成
注意:字符串无法和非字符串变量进行拼接。因为类型不一致,无法接上
就像接力赛一样,不是队友,不能接力的哦!
"""
str1 = "rnny"
num1 = 12
concat = str1 + num1.__str__()
# rnny12
print(concat)
标签:变量,08,拼接,字符串,concat,num1
From: https://www.cnblogs.com/rnny/p/17066284.html