write a python statement to declare a List name MyList with values of 5,10,15 and a Tuple name MyTuple with values 20,25,30
Answers
Answered by
0
Answer:
The most common way to declare a list in Python is to use square brackets. A list is a data structure in Python that contains an ordered sequence of zero or more elements. Lists in Python are mutable, which means they can be changed. They can contain any type of data, like a string or a dictionary
Similar questions