Here is the code snippet, which is unable to print items of the tuple. [Using python versions 2.6.8/2.7.10]
def lists (var, *st):
print type(st)
for item in range(1,len(st)):
print "Items is:" + item
st = ['udf','var_udf']
lists("a",st)
Thanks in advance