cara mengubah tuple menjadi daftar di python

tuple1 = ("car", "bike", "bus")
list1= list(tuple1)
print(list1)
Bad Barracuda