Python Course :- Tuples , Lists , Dictionaries and Sets Part-1

Hello Guys, this a Python Course in which we discuss the ’Python Data Types or Python Data Structure’ which analogy to:- • Tuples:- o What is Tuple?  Ordered sequences of objects  Defined using parenthesis  Immutable sequence  Store different data types  container  Creating tuple  Creating tuple with items o Indexing of Tuple o Slicing of Tuple  print(tup1[start:end:step size])  default value of start is always zero  default value of step size always 1 o Tuple Methods  count()  index() o Tuple Function  len()  max()  min() o Tuple Operations  Addition  Multiplication  In operator  Not in operator o Unpacking of Tuple o For loop with Tuple • Lists:- o What is List? – 1
Back to Top