Skip to content

Instantly share code, notes, and snippets.

@rittersebastian
rittersebastian / examples.py
Created May 6, 2012 15:46
good practices
'''
Defining dictionaries
'''
my_dict = {
'key_1': 'notice the space after colon',
'key_2': 'but not before the colon',
'key_3': 'we are exactly 4 spaces indented'
}