标签: 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开发人员为什么不实现自动转换的方法?有缺点吗?