Python Code which i practiced and developed
- 42 - Integer
- '42' - String
- 42.10 - Float
== Equal to
!= Not Equal to
< Less than
> Greater than
<= Less than or Equal to
>= Greater than or Equal to
- and
- or
- not
- True and True = True
- True and False = False
- False and True = False
- False and False - False
- True or True = True
- True or False = True
- False or True - True
- False or False - False
- not True = Flase
- not False = True
myAge = 26
myPet = 'Dog'
myAge > 20 and myPet == 'Dog'
True