Tuples in Python Class 11 Important NCERT Notes
Tuples in Python Class 11 Notes Tuples : A tuple is an ordered sequence of elements of different data types, such as integer, float, string or list. Elements of a tuple are enclosed in parenthesis(round brackets) and are separated by commas. for example : >>> a = (1, ‘a’, 7, 6.5) # a is the … Read more