修复 Python 无法连接 STR 和 Int 对象错误
Haider Ali
2022年5月17日
在 Python 中,我们不能将字符串和整数连接在一起。它们具有不同的基础和内存空间,因为它们是完全不同的数据结构。
我们将告诉你如何在 Python 中解决此错误。
修复 Python 中的 cannot concatenate 'str' and 'int' objects
错误
看看下面的代码。
#String variable
s1="Hello"
#integer variable
number=5
#Trying to concatenate string with integer
s2=s1+number
如果我们在上面的代码示例中连接一个字符串和一个整数,它会给出这个确切的错误 cannot concatenate 'str' and 'int' objects
。那么,我们怎样才能避免这个错误呢?看一看。
#String variable
s1="Hello"
#integer variable
number=5
#Converting integer to string
number_str=str(number)
#Concatenate number to a string
s2=s1+number_str
print(s2)
我们可以先将整数转换为字符串,然后将这两个字符串连接起来。
这里的想法是你只能连接两个字符串,而不是字符串或任何其他数据类型。因此,如果需要连接不同结构的字符串,必须先将其转换为字符串。
Author: Haider Ali
Haider specializes in technical writing. He has a solid background in computer science that allows him to create engaging, original, and compelling technical tutorials. In his free time, he enjoys adding new skills to his repertoire and watching Netflix.
LinkedIn相关文章 - Python String
- 在 Python 中从字符串中删除逗号
- 如何用 Pythonic 的方式来检查字符串是否为空
- 在 Python 中将字符串转换为变量名
- Python 如何去掉字符串中的空格/空白符
- 如何在 Python 中从字符串中提取数字
- Python 如何将字符串转换为时间日期 datetime 格式