What is Truthy and Falsy? How is it different from True and False?

前端 未结 6 1520
广开言路
广开言路 2020-11-21 04:16

I just learned there are truthy and falsy values in python which are different from the normal True and False.

6条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-21 05:13

    Truthy values refer to the objects used in a boolean context and not so much the boolean value that returns true or false.Take these as an example:

    >>> bool([])
    False
    >>> bool([1])
    True
    >>> bool('')
    False
    >>> bool('hello')
    True
    

提交回复
热议问题