Python Unpacking Tuples By Examples

PHOTO EMBED

Thu Feb 29 2024 06:14:54 GMT+0000 (Coordinated Universal Time)

Saved by @viperthapa #python

numbers = (*odd_numbers, *even_numbers)
print(numbers)
Code language: Python (python)
content_copyCOPY

https://www.pythontutorial.net/python-basics/python-unpacking-tuple/