Skip to content

techarkit/python

Repository files navigation

Tech Arkit Python

Python Code which i practiced and developed

  • 42 - Integer
  • '42' - String
  • 42.10 - Float

Comparison Operators

  • == Equal to
  • != Not Equal to
  • < Less than
  • > Greater than
  • <= Less than or Equal to
  • >= Greater than or Equal to

Boolean Operators

  • and
  • or
  • not

The and Operators Truth Table

  • True and True = True
  • True and False = False
  • False and True = False
  • False and False - False

The or Operators Truth Table

  • True or True = True
  • True or False = True
  • False or True - True
  • False or False - False

The not Operators Truth Table

  • not True = Flase
  • not False = True
myAge = 26
myPet = 'Dog'
myAge > 20 and myPet == 'Dog'
True

About

Python Code which i practiced and developed

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages