Skip to content

Instantly share code, notes, and snippets.

@Mikelew88
Mikelew88 / python_101_blog_example.py
Created October 23, 2017 15:42
Python 101 Blog Example
# variable
var1 = 10
# list
anything = [10, 10, 3, 2]
# dict
dict1 = {'apple': 'green', 'grape':'red', 'other grape':'green', 'apple':'red'}
# loops through lists