Concatenate tuples in Python

PHOTO EMBED

Sat Aug 26 2023 09:43:02 GMT+0000 (Coordinated Universal Time)

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

homework1 = ("Multiplication Table of Two", \
"A poem on environment", "Process of Photosynthesis")

homework2 = ("Maps of the world", "glorious past revision")

homework = homework1 + homework2

print(homework)
content_copyCOPY