Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Chapter 02: Variables & Data Types

Variables

  • Variables are containers for values.
  • Example:
x = 10
y = "Hello"

Data Types

  • int, float, str, bool, list, tuple, set, dict, NoneType
  • Use type() to check data type.