##We open Python. We work directly on the Shell (not IDLE). We are not going to save.
#Check out these symbols: <, >, <=, >=, ==, !=
THEY MEAN:
Smaller than: <
Bigger than: >
Smaller than or equal to <=
Bigger than or equal to >=
Equal to ==
Not equal to !=
#In the PyShell try some of these:
3<5, 5<3
6>5, 6>6
6<=5, 6<=6, 6<=7
8>=7, 8>=8, 8>=9
9==8, 9==9, 9==10
4!=3, 4!=4, 4!=5
The PyShell is clever, right?
Invent your own. Can you predict the answer?