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