Skip to content

Instantly share code, notes, and snippets.

View andela-anandaa's full-sized avatar

Anthony Nandaa andela-anandaa

View GitHub Profile
// Sample standup post (in MarkDown for Slack)
_*#Last 24*_
- Went through OOP
- Did etc.
- etc.
_*#Next24*_
- Start Checkpoint
- etc.
@andela-anandaa
andela-anandaa / python-chain-map.py
Last active April 11, 2017 12:53
Going through Python 3's ChainMap
from collections import ChainMap
# Traditionally, you can combine dictionaries into one,
# however, this creates a totally new dictionary
# e.g. for Python 3.5, you could do this:
a = {'name': 'Andela'}
b = {'class': 'World'}