Copy a tuple in Python

PHOTO EMBED

Sat Aug 26 2023 09:44:22 GMT+0000 (Coordinated Universal Time)

Saved by @pythonHub #python #python-hub #basics

homework = ("Multiplication Table of Two", \
"A poem on environment", "Process of Photosynthesis",\
"Maps of the world", "glorious past revision")

print(homework)

HW = homework
print(HW)
content_copyCOPY