Answers for "python tuple function list"

7

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


#Code_Breaker
Posted by: Guest on November-20-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

Python Answers by Framework

Browse Popular Code Answers by Language