how to convert elements in a list to tuple in python code example
Example: how to convert tuple into list in python
tuple1 = ("car", "bike", "bus")
list1= list(tuple1)
print(list1)
tuple1 = ("car", "bike", "bus")
list1= list(tuple1)
print(list1)