📌  相关文章
📜  TypeError: can only concatenate str (not "int") to str - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:10.742000             🧑  作者: Mango

代码示例3
# Instead of using " + " operator
print( "Alireza" + 1980)
# Use comma " , " operator
print( "Alireza" , 1980)