如果我尝试执行以下操作:
things = 5
print("You have " + things + " things.")
我在Python 3.x中遇到以下错误:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: must be str, not int
...和Python 2.x中的类似错误:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: cannot concatenate 'str' and 'int' objects
如何解决这个问题?
答案 0 :(得分:83)
这里的问题是+
运算符在Python中具有(至少)两种不同的含义:对于数字类型,它意味着“将数字加在一起”:
>>> 1 + 2
3
>>> 3.4 + 5.6
9.0
...对于序列类型,它意味着“连接序列”:
>>> [1, 2, 3] + [4, 5, 6]
[1, 2, 3, 4, 5, 6]
>>> 'abc' + 'def'
'abcdef'
作为一项规则,Python不会将对象从一种类型隐式转换为另一种类型 1 ,以使操作“有意义”,因为这会让人感到困惑:例如,您可能会认为'3' + 5
应该是'35'
,但其他人可能认为它应该是8
甚至是'8'
。
同样,Python不会让你连接两种不同类型的序列:
>>> [7, 8, 9] + 'ghi'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: can only concatenate list (not "str") to list
因此,您需要明确地进行转换,无论您想要的是串联还是添加:
>>> 'Total: ' + str(123)
'Total: 123'
>>> int('456') + 789
1245
然而,有更好的方法。根据您使用的Python版本,有三种不同的字符串格式可用 2 ,这不仅可以避免多个+
操作:
>>> things = 5
>>> 'You have %d things.' % things # % interpolation
'You have 5 things.'
>>> 'You have {} things.'.format(things) # str.format()
'You have 5 things.'
>>> f'You have {things} things.' # f-string (since Python 3.6)
'You have 5 things.'
...但也允许您控制值的显示方式:
>>> value = 5
>>> sq_root = value ** 0.5
>>> sq_root
2.23606797749979
>>> 'The square root of %d is %.2f (roughly).' % (value, sq_root)
'The square root of 5 is 2.24 (roughly).'
>>> 'The square root of {v} is {sr:.2f} (roughly).'.format(v=value, sr=sq_root)
'The square root of 5 is 2.24 (roughly).'
>>> f'The square root of {value} is {sq_root:.2f} (roughly).'
'The square root of 5 is 2.24 (roughly).'
您使用% interpolation,str.format()
还是f-strings取决于您:%插值已经过了最长时间(对于C中有背景的人来说很熟悉),{ {1}}通常更强大,f字符串仍然更强大(但仅在Python 3.6及更高版本中可用)。
另一个选择是使用以下事实:如果您给str.format()
多个位置参数,它将使用print
关键字参数(默认为sep
)将它们的字符串表示连接在一起:
' '
...但这通常不如使用Python的内置字符串格式化功能那么灵活。
1 虽然它是数字类型的一个例外,大多数人会同意“正确”的事情:
>>> things = 5
>>> print('you have', things, 'things.')
you have 5 things.
>>> print('you have', things, 'things.', sep=' ... ')
you have ... 5 ... things.
2 实际上有四个......但template strings很少使用,有点尴尬。
答案 1 :(得分:6)
<强> TL; DR 强>
:print("You have " + str(things) + " things.")
(旧的
学校方式)
或:print("You have {} things.".format(things))
(新的pythonic
<推荐方式)
更多口头解释:
虽然上面的优秀@Zero比雷埃夫斯答案中没有任何内容,我会尝试“缩小”它:
您不能在python中连接字符串和数字(任何类型),因为这些对象具有不相互兼容的加号(+)运算符的不同定义(在str情况下+用于连接,在数字情况下它用于将两个数字加在一起)。
所以为了解决这个对象之间的“误解”:
答案 2 :(得分:2)
Python 2.x
答案 3 :(得分:-1)
另一种替代方法是使用str.format()
方法将int连接到String中。
您的情况:
替换
print("You have " + things + " things.")
使用
print("You have {} things".format(things))
如果有
first = 'rohit'
last = 'singh'
age = '5'
print("My Username is {}{}{}".format(first,age,last))