I am learning Python for a class now, and we just covered tuples as one of the data types. I read the Wikipedia page on it, but, I could not figure out where such a data type wo
Tuples are used in :
a,b=1,2
def add(*arg) #arg is a tuple return sum(arg)