File: class/Workbook/Examples/Lecture5/matching2.py
def f5(a, b=2, c=3): print a, b, c def f6(a, b=2, *c): print a, b, c