如何连接 str 和 int 对象?
- 2024-11-21 08:33:00
- admin 原创
- 7
问题描述:
如果我尝试执行以下操作:
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
我怎样才能解决这个问题?
解决方案 1:
这里的问题是,该+
运算符在 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).'
至于使用% 插值、str.format()
还是f 字符串则取决于你: % 插值是存在时间最长的(具有 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尽管它对数字类型有一个例外,但大多数人都同意这样做是“正确的”:
>>> 1 + 2.3
3.3
>>> 4.5 + (5.6+7j)
(10.1+7j)
2实际上有四个,但是模板字符串很少使用,而且有些尴尬。
其他资源:
真正的 Python:在 Python 中拆分、连接和合并字符串
Python.org:-
string
常见的字符串操作python 字符串与 int 连接 site:stackoverflow.com
- 2024年20款好用的项目管理软件推荐,项目管理提效的20个工具和技巧
- 2024年开源项目管理软件有哪些?推荐5款好用的项目管理工具
- 项目管理软件有哪些?推荐7款超好用的项目管理工具
- 项目管理软件哪个最好用?盘点推荐5款好用的项目管理工具
- 项目管理软件有哪些最好用?推荐6款好用的项目管理工具
- 项目管理软件有哪些,盘点推荐国内外超好用的7款项目管理工具
- 2024项目管理软件排行榜(10类常用的项目管理工具全推荐)
- 项目管理软件排行榜:2024年项目经理必备5款开源项目管理软件汇总
- 2024年常用的项目管理软件有哪些?推荐这10款国内外好用的项目管理工具
- 项目管理必备:盘点2024年13款好用的项目管理软件