Header
Body
Example
def buildConnectionString(params):
"""Build a connection string from a dictionary of parameters.
Returns string."""
return ";".join(["%s=%s" % (k, v) for k, v in params.items()])
#// def I like to add an explicit notation to mark the end of a block