An open API service indexing awesome lists of open source software.

https://github.com/techarkit/python

Python Code which i practiced and developed
https://github.com/techarkit/python

Last synced: 3 months ago
JSON representation

Python Code which i practiced and developed

Awesome Lists containing this project

README

          

# 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
```