为什么python级联时不会自动将整数转换为字符串?

时间:2019-12-24 12:52:14

标签: python string integer implicit-conversion

>>> print("The string will be concatenated with integer"+44)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: must be str, not int

在javascript中,它会自动转换。 python开发人员为什么不实现自动转换的方法?有缺点吗?

0 个答案:

没有答案