0

I did some simple basic operations in Python 2.7 using > , < and == comparison operators .

Then I stumbled on these dilemma :

9 = 09
False

9 = 009
False

8 = 08
False

8 = 008
False

But others are okay like :

1 = 01
True

1 = 001
True

from 1 to 7 it's okay .... :-(

0 Answers0