How To Concatenate Python 3 Tuples

preview_player
Показать описание
Be sure to like, share and comment to show your support for our tutorials.

=======================================
======================================

In this Python tutorial, we discuss how you can perform Python tuple concatenation. Concatenation of a tuple gives you the ability to combine two or more tuples in Python. We combine one or more tuples using the plus(+) in between the tuples to combine them.

When performing concatenation of a tuple in Python it is important to note that we do not really change any of the current tuples. We are establishing a new tuple. Tuples are immutable in Python which means they cannot be changed once they are created. If you would like to use the new concatenate tuple later in your program, you would need to assign a new variable to represent the new tuple.

If you have any questions about Python tuple concatenation. Please leave a comment below so we can help you.
Рекомендации по теме
Комментарии
Автор

in 4:44 haven't we changed the value of a

chandralaljayasuriya