You can find out by inspecting the id of each object.
Here are the results from my run.
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 of it perfectly. Just for reference, I did more tests for other types of objects.
For an 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 a 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])
For a 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]])