Python Variables
Presentation: Python Variables
- What are variables?
- Labeled data stored in a computer’s memory.
- Creating variables
name = value
- names are case sensitive
- Primitive types
- Numbers:
count = 5
- Booleans:
is_raining = True
- Strings:
name = "Chris"
- Numbers:
- Duck typing
Activity: Python Pathway
- Continue working on your Python pathway. Introduction to Python: Variables, functions, and loops
Resources
Videos
Python Variables - Python Tutorial for Beginners with Examples