#enumerate() function takes a collection/data (e.g. a tuple) and returns it as an enumerate object.
#This function adds a counter as the key of the enumerate object.
#In simple language enumerate will attach numbering starting from 0 to n- for the data provided.
x = ['Kushal', 'Aadarsh', 'Jay'] #[]
y = enumerate(x) #,4
print(list(y)) #y tuple list