top of page
Search
techskill065

Tuple in Python : Creating, Accessing Tuple





Tuple


Python tuples are a collection of alphabet of any data kinds just like lists, but tuples are inflexible i.e. we can not alter the fundamentals of the tuple or the tuple itself, once it's charged where as we can modify the basics of the list as they're changeable.


Creating a Tuples in Python


Tuples can simply be created when they're being charged, hence by placing all the alphabet inside gap, disassociated by a comma will produce a tuple.


tempTuple = (' red',' white',' black')

. print (tempTuple)


Output

(' red',' white',' black')



Accessing fundamentals in a tuple is no dissimilar also accessing fundamentals in a list. As python follows 0 based indexing hence a tuple with n fundamentals will have indicators from 0 through n-1. An index in a tuple is penetrated with the index driver ().


Slicing in tuples works the equal as it works for a string or any different sequence of fundamentals. Slice is an operator that allows you to bring a sub assemblage (in this case a sub tuple) from a assemblage by slicing it from a launch indicator and a stop indicator.


Slice syntax

Str ( start stop step)


Beginning is the starting indicator of the string, on which slicing operation has to be accomplished. It determines from where slicing of the string will‘ commence’.

stop is the stopping indicator of the slicing, ‘until’ which slicing operation has to be accomplished i.e stop indicator is banned while generating the sub-tuple.

step It's an voluntary argument that defines the way when repeating the list i.e. it allows us to bounce over fundament



List


List can be descried as a collection they can grip multiple variables. A list can possess any number of alphabet. They're alike to arrays in different programming languages. Lists can clench all varieties of variables figures ( whole figures), floats, characters, textbooks and numerous other.





Conclusion


Here, we discuss Tuple in python, creating ,accessing tuple and list. Tuples are one of the data structures that python has to give and is inflexible, ordered, has integer grounded indexing and allows indistinguishable data to be kept.

You can also visit another blog on difference between list and tuple to learn about Tuple vs list in python.


1 view0 comments

Comments


Post: Blog2_Post
bottom of page