Skip to content

Instantly share code, notes, and snippets.

@cldershem
cldershem / lesson.py
Last active April 27, 2017 18:39 — forked from Ethan-Arrowood/instructions.py
FCC-Python-Variable-Challenge created by Ethan.Arrowood - https://repl.it/HTLB/5
"""
Title: Variables
Description/Explanation/Lesson:
Variables in Python are defined using the '=' (pronounced: 'is') operator.
Example: `my_age = 18`
Variables can contain values such as strings, numbers, lists, class
instances, and many more things!