Hello,

This code works for me:

>>> x=3
>>> if x==0:
...     print "x is 0"
... elif x&1 ==1:
...     print "x is a odd number"
... elif x&1==0:
...     print "x is a even number"
...
x is a odd number

So I think you copied by error the string '-- Line 6' in you example given that has nothing to
do with the rest of the code.

Regards
Karim


On 08/11/2010 03:34 AM, Sudarshana Banerjee wrote:
    print "x is a even number"

_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to