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
- Host: GitHub
- URL: https://github.com/techarkit/python
- Owner: techarkit
- License: gpl-3.0
- Created: 2023-03-09T09:29:01.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-02-12T07:02:53.000Z (11 months ago)
- Last Synced: 2025-09-22T10:45:47.148Z (4 months ago)
- Language: Python
- Size: 42 KB
- Stars: 2
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```