Python 文本和数字相等判断

发布时间:2019-08-08 07:45:16编辑:auto阅读(2064)

    文本和数字相等判断

    虽然数字的字符串值被认为与整型值和浮点型值完全不同,但整型值可以与浮点值相等。Python 进行这种区分,因为字符串是文本,而整型值和浮点型都是数字。

    1. example 1

    Microsoft Windows [版本 6.1.7601]
    版权所有 (c) 2009 Microsoft Corporation。保留所有权利。
    
    C:\Users\foreverstrong>python
    Python 3.6.0 (v3.6.0:41df79263a11, Dec 23 2016, 08:06:12) [MSC v.1900 64 bit (AMD64)] on win32
    Type "help", "copyright", "credits" or "license" for more information.
    >>> 42 == "42"
    False
    >>>
    >>> 42 == 42.0
    True
    >>>
    >>> 42.0 == 0042.000
    True
    >>> exit()
    
    C:\Users\foreverstrong>

    将整型值与浮点值进行相等判断是十分不理智的。

     

关键字