def ShowKwargs(**kwargs): for key,value in kwargs.iteritems(): print '\t%s: %s' % (key,value) print '\n'