Python 报错:can only concatenate str (not “int”)to str

x = 1
print("x="+x)

使用+连接时,只能将字符串与字符串连接,不能和int型连接。
需要将x强制转换成str型。

x = 1
print("x="+str(x))

你可能感兴趣的:(python)