Python何时进行自动类型转换?
–
更新:
我在阅读这篇文章后问了这个问题:In praise of Go or : “Why I moved from Python and C++ to Go”.海报的一点是:
- It is statically typed, so it is more explicit and the code of a third
party is more readable. Also it
eliminates the risk of unwanted
automatic type conversions (unlike
Python).
我不知道“不想要的自动类型转换”是什么意思.现在,我认为他正在谈论implicit numeric conversions.当然,Python有这些作为1.0 2将转换2到2.0并返回3.0.
最佳答案 它没有 – 它有
duck typing而不是.
(我可能误解了你自动类型转换的含义,所以如果你在问题中提供更多细节,它会有所帮助.)