Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 9 Online
OpenStudy (anonymous):

What is the difference between a list and a tuple?

OpenStudy (anonymous):

http://news.e-scribe.com/397

OpenStudy (anonymous):

I think that a list is a set of elements that can be numbers or strings, or a subset. a tuple is a sequence of instructions.

OpenStudy (anonymous):

One functional aspect is that a list is mutable and a tuple is not.

OpenStudy (anonymous):

The principal difference is this: a tuple is very much like a list except that it is immutable (i.e. it can't be changed). Both are object types and can be used for grouping data into a single object. Before looking at how they are different let's look at how they are similar: --> Like lists, tuples are *ordered* collections of objects --> Like lists, tuples can embed any kind of object --> Like lists, tuples are accessed by offset and, therefore, support offset-based access operations such as indexing and slicing. If you wanted to use an object that consists of the first 5 prime numbers, you can use either a list or a tuple: a = [2, 3, 5, 7, 11] b = (2,3,5,7,11) Thus, print a[2] print b[2] will give you the same result, namely the number 5 But suppose you want to change a and b to add the next prime number. The following works perfectly for a, which is a list and is *mutable* a.append(13) a has now mutated (i.e. changed) to the object: [2,3,5,7,11,13] Try to change or mutate a tuple and you will get an error message. In fact, you can't perform any operations on tuples which change the object once defined. Why might you use tuples? When you have a set of objects that you are fixed and you don't expect to change throughout the life of your program. For example, if you want to store the letters in the English alphabet. ('a', 'b',....)

OpenStudy (anonymous):

given all that, lists have lots of methods and sometimes it makes things easier to turn you tuple into a list then do stuff to it then turn it back into a tuple

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Latest Questions
emmarose: What is your earliest childhood memory?
11 hours ago 13 Replies 0 Medals
emmarose: what are y'all's opinion on squirrels
11 hours ago 18 Replies 0 Medals
Rosa2011: It's my birthday, what usually y'all doing on your birthdays
10 hours ago 28 Replies 4 Medals
Skyler14: we just got a new puppy
11 hours ago 20 Replies 1 Medal
XxXGhostXxX: what is some good songs i should listen to?
11 hours ago 55 Replies 2 Medals
75: if my dog bites the living hell out of me, can i hit it?
11 hours ago 6 Replies 0 Medals
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!