You can find out by checking the id each object.
Here are the results of my launch.
y=("hello","the","world") id(y), [id(i) for i in y] (18627040, [21912480, 21964056, 21910304]) y = list(y) id(y), [id(i) for i in y] (21905536, [21912480, 21964056, 21910304])
As you can see, the objects are the same.
Update: Sven Marnach explains how and why it is beautiful. For reference, I did more tests for other types of objects.
For object
class C: pass x = (C(), C(), C()) id(x), [id(i) for i in x] (18626400, [19992128, 19992008, 19991328]) x= list(x) id(x), [id(i) for i in x] (21863560, [19992128, 19992008, 19991328])
For the list
z = ([], [], []) id(z), [id(i) for i in z] (18627040, [21908016, 21907136, 21908536]) z = list(z) id(z), [id(i) for i in z] (18614992, [21908016, 21907136, 21908536])
List of lists
p = ([[], []], [[], []], [[], []]) id(p), [[id(i) for i in j] for j in p] (18627040, [[21919504, 21895808], [21894608, 21895008], [19991008, 19789104]]) p = list(p) id(p), [[id(i) for i in j] for j in p] (19800352, [[21919504, 21895808], [21894608, 21895008], [19991008, 19789104]])