Picture of the authorDevGrads

Datatypes

Different categories of data your variables can hold.

Types of datatypes

  1. int Integer
  2. float Floating point number
  3. bool Booleans (True, False)
  4. list lists, collection of similar data
  5. sets collection of unique data
  6. dict collection of key-value pairs
  7. and many more...
------