Answers for "list and tuple methods in python"

1

tuple and list in python

#to create a tuple you use ( ) :
myTuple = ()
#but to create a list you use [ ] :
myList = []
#tuples cannot be changed while the lists can be modified but Tuples are
#more memory efficient
Posted by: Guest on July-09-2021
0

python tuple methods

count(x) : Returns the number of times 'x' occurs in a tuple
index(x) : Searches the tuple for 'x' and returns the position of where it was first found
Posted by: Guest on February-22-2021

Code answers related to "list and tuple methods in python"

Python Answers by Framework

Browse Popular Code Answers by Language