Skip to content

Latest commit

 

History

History
68 lines (51 loc) · 1.48 KB

README.md

File metadata and controls

68 lines (51 loc) · 1.48 KB

Python

Python programming language fundamentals.

██████  ██    ██ ████████ ██   ██  ██████  ███    ██ 
██   ██  ██  ██     ██    ██   ██ ██    ██ ████   ██ 
██████    ████      ██    ███████ ██    ██ ██ ██  ██ 
██         ██       ██    ██   ██ ██    ██ ██  ██ ██ 
██         ██       ██    ██   ██  ██████  ██   ████ 

General

  • Python fundation

Environment

  • OS: ubuntu, kali
  • Language: python
  • Editor: vim, VS Code
  • IDE: PyCharm

Data types

  • int integer
  • float float point number
  • bool true or false
  • str
  • list
  • tuple
  • dict
  • none abascense of value
  • set
  • bytes
  • bytearray
  • range
  • slice
  • frozenset
  • complex

Classes => custom types

Specialized data types

Special packages

Conditional logic

Logical operators

  • > greater than
  • < less than
  • >= greater than or equal to
  • <= less than or equal to
  • == equal to
  • != not equal to
  • and and
  • or or
  • not not

Mathematical precedence

  • ()
  • **
  • * /
  • + -