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 <[EMAIL PROTECTED]> 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@python.org
> http://mail.python.org/mailman/listinfo/tutor
>
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to