Press "Enter" to skip to content

Posts tagged as “tuple”

Python Tuple

Zigya Acadmey 0

Tuples are an ordered sequences of items, just like lists. The main difference between tuples and lists is that tuples cannot be changed (immutable) unlike lists which can (mutable). #…