[Tutor] Logical Operaor

Jason Keen jasonkeen at gmail.com
Thu Apr 6 15:40:11 CEST 2006


In python, any nonzero number is considered to mean "True".
Zero is considered to be "False".

The "and" logical operation evaluates to "True" only if both terms are true.


On 4/6/06, Kaushal Shriyan <kaushalshriyan at gmail.com> wrote:
> Hi
>
> I am referring to http://www.ibiblio.org/obp/thinkCSpy/chap04.htm
> about Logical operators
>
> I didnot understood
>
> >>>  x = 5
> >>>  x and 1
> 1
> >>>  y = 0
> >>>  y and 1
> 0
>
> How 5 and 1 means 1 and 0 and 1 means 0
>
> Thanks
>
> Regards
>
> Kaushal
> _______________________________________________
> Tutor maillist  -  Tutor at python.org
> http://mail.python.org/mailman/listinfo/tutor
>


More information about the Tutor mailing list