I\'m creating a function that consolidates a couple of lists into a string and am encountering the below error.
Traceback (most recent call last): File \"Tradi
#Use Of Zip() function
#Generate tuple
x=zip( range(5), range(1,20,2) ) print("Tuple : ",tuple(x))
#Generate List
x=zip( range(5), range(1,20,2) ) print("List : ",list(x))
#Generate dictonary
x=zip( range(5), range(1,20,2) ) print("Dictonary : ",dict(x))