Python Chapter 4

Ace your homework & exams now with Quizwiz!

What is the difference between lists and tuples?

Lists are mutable; they can have values added, removed, or changed. Tuples are immutable; they cannot be changed at all. Also, tuples are written using parentheses, ( and ), while lists use the square brackets, [ and ].

What is []?

The empty list value, which is a list value that contains no items. This is similar to how '' is the empty string value.

What are the operators for list concatenation and list replication?

The operator for list concatenation is +, while the operator for replica- tion is *. (This is the same as for strings.)

For the following three questions, let's say spam contains the list ['a', 'b', 'c', 'd']. What does spam[int(int('3' * 2) / 11)] evaluate to? What does spam[-1] evaluate to? What does spam[:2] evaluate to?

'd' - cause of string replication, 'd', ['a', 'b']

How do you type the tuple value that has just the integer value 42 in it?

(42 , ) (The trailing comma is mandatory.)

For the following three questions, let's say bacon contains the list [3.14, 'cat', 11, 'cat', True]. What does bacon.index('cat') evaluate to? What does bacon.append(99) make the list value in bacon look like? What does bacon.remove('cat') make the list value in bacon look like?

1, [[3.14, 'cat', 11, 'cat', True,99], [3.14, 11, 'cat', True]

Name a few ways that list values are similar to string values.

Both lists and strings can be passed to len(), have indexes and slices, be used in for loops, be concatenated or replicated, and be used with the in and not in operators.

What are two ways to remove values from a list?

The del statement and the remove() list method are two ways to remove values from a list.

How can you get the tuple form of a list value? How can you get the list form of a tuple value?

The tuple() and list() functions, respectively

Variables that "contain" list values don't actually contain lists directly. What do they contain instead?

They contain references to list values.

What is the difference between the append() and insert() list methods?

While append() will add values only to the end of a list, insert() can add them anywhere in the list.

How would you assign the value 'hello' as the third value in a list stored in a variable named spam? (Assume spam contains [2, 4, 6, 8, 10].)

spam[2] = 'hello' (Notice that the third value in a list is at index 2 because the first index is 0.) or spam.insert(2,'hello')


Related study sets

Psychology Chapter 8 - Prejudice and Stereotyping

View Set

Cessna 172 Nav III Skyhawk SP (G1000) V Speeds

View Set