这是一个类型错误,意思是只能将字符串(str)连接到字符串(str),不能将整数(int)连接到字符串(str)。 可能是因为您在尝试将字符串和整数连接在一起时出现了此错误。 您可以将整数转换为字符串,然后再连接。 name = 100 str = “hello “+name 解决的办法 通过str()函数来将其他类型变量转成String。 str = “hello “+str(name) 文章导航 DeprecationWarning: Call to deprecated function get_sheet_by_name (Use wb[sheetname]). python jupyter使用