Python: Why does equality comparing an int with a string not throw an error?

前端 未结 3 1360
無奈伤痛
無奈伤痛 2021-01-11 16:32

In Python 3 the attempt to order a string and an int (e.g. 1 > \"1\") throws a TypeError. Why does comparing a string with an int for equality not throw an e

3条回答
  •  轮回少年
    2021-01-11 17:30

    Strength and weakness of languages typing

    Typing of language could be strong or weak (loose). The stronger typing language has the less different types could be operated in the same operation. Weakness and strength of language typing don't have exact threshold - some language could have stronger typing then other and weaker than another one. Python typing is much stronger than JS.

    == implemented as more of less weakly-typed operation. It can compare different types but you need to have both values of the same type to have a chance to obtain True. a == b #true means a and b is objects of the same type and have the equal values. > < in Python 3 implemented as strongly-typed operation and couldn't be performed on different types.

提交回复
热议问题