unpack tuple to list python code example Example: python tuple to list my_tuple = (1, 2, 3) print( list(my_tuple) ) # [1, 2, 3]