gpt4 book ai didi

python - 如何连接 str 和 int 对象?

转载 作者:IT老高 更新时间:2023-10-28 20:22:17 25 4
gpt4 key购买 nike

如果我尝试执行以下操作:

things = 5
print("You have " + things + " things.")

我在 Python 3.x 中收到以下错误:

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: can only concatenate str (not "int") to str

... 和 Python 2.x 中的类似错误:

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: cannot concatenate 'str' and 'int' objects

我该如何解决这个问题?

最佳答案

这里的问题是 + 运算符在 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).'

您是否使用 % interpolationstr.format()f-strings 取决于您:% 插值是最长的(并且对于有 C 背景的人来说很熟悉),str.format() 是通常更强大,而 f 字符串仍然更强大(但仅在 Python 3.6 及更高版本中可用)。

另一种选择是使用这样一个事实,即如果您给 print 多个位置参数,它将使用 sep 关键字参数(默认为 ''):

>>> things = 5
>>> print('you have', things, 'things.')
you have 5 things.
>>> print('you have', things, 'things.', sep=' ... ')
you have ... 5 ... things.

...但这通常不如使用 Python 的内置字符串格式化功能灵活。


1虽然它对数字类型做了一个异常(exception),但大多数人都会同意“正确”的做法:

>>> 1 + 2.3
3.3
>>> 4.5 + (5.6+7j)
(10.1+7j)

2其实是四个,但是template strings很少用,有点别扭。


其他资源:

关于python - 如何连接 str 和 int 对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25675943/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com