format = "Hello, %s. %s enough for ya"values = ('world', 'Hot')print format % valuesk = "uid" v = "sa" print "%s=%s" % (k, v)