What does this program print?

from Tuples
Python 3.14 beginner 2 min

What does this program print?

Python
route = (["home"], "ready")
snapshot = route
route[0].append("catalog")

print(snapshot)
print(route is snapshot)
Open in playground
Report an error