Presentation: Python Variables

  1. What are variables?
    • Labeled data stored in a computer’s memory.
  2. Creating variables
    • name = value
    • names are case sensitive
  3. Primitive types
    • Numbers: count = 5
    • Booleans: is_raining = True
    • Strings: name = "Chris"
  4. Duck typing

Activity: Python Pathway

  1. Continue working on your Python pathway. Introduction to Python: Variables, functions, and loops

Resources

Videos

Python Variables - Python Tutorial for Beginners with Examples

Websites

Python Variables

trinket.io