https://stackoverflow.com/questions/3294889/iterating-over-dictionaries-using-for-loops
Lecture 1: Algorithmic Thinking, Peak Finding
How to open a webpage and search for a word in python
How to split a string into a list?
How to find a type of an object in Golang?
Return a tuple consisting of the two numeric arguments converted to a common type
#!/usr/bin/python
x = 10
y = 23.8
print coerce(x,y)
$python coerce.py (10.0, 23.8) $python coerce.py (10.0, 23.8) $
Convert an integer number to a binary string
#!/usr/bin/python
x = 10
print bin(x)
$python bin.py 0b1010 $python bin.py 0b1010 $