#!/usr/bin/python def print_hello(firstname="", lastname=""): print "Hello, %s %s" % (firstname, lastname) print_hello(lastname="Sherrill", firstname="David") # this works only in Python 3? #def area(x, y, *, units="inches"): # print x*y, "square %s" % units # #area(2, 3, "centimeters")