LXer: Python Tuples
by LXer from LinuxQuestions.org on (#5D0XS)
Published at LXer:
Tuples are similar to lists , with the main difference being that the lists are mutable while the tuples are immutable. This means that the tuples can not be changed after creation.
Read More...


Tuples are similar to lists , with the main difference being that the lists are mutable while the tuples are immutable. This means that the tuples can not be changed after creation.
Read More...