Chapter 10: Tuples Flashcards

1
Q

immutable

A

cannot be changed. unlike list values which can be

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

comparable

A

can be compared with one another, eg x>y==True, or can be sorted

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

hashable

A

Has a hash value that never changes during its existence. Means an object is usable as a dictionary key and a set member, because these data structures use the hash value internally.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

hash value

A

A hash is a fixed-sized integer that identifies a particular value. Each value needs to have its own hash, so for the same value, you will get the same hash even if it’s not the same object.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

tuple

A

a sequence of values of any type like a list, indexed by integers. owing to being immutable, comparable and hashable, tuples can be used as key values in dictionaries.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

create a tuple with 1 value, and then with multiple values

A

t=(‘1’,)
t=(‘5’, ‘6’, ‘4’)
when just 1 value, comma needed or looks like a string in brackets.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

t=tuple()

A

creates an empty tuple. whatever it has in it within a set of inverted commas, it will add each character as a new value.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

slice 2nd and third values from t=(‘5’, ‘6’, ‘4’)

A

t[1:3]

returns (‘6’, ‘4’)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

immutable so can’t change values, need to replace them, reconstructing the tuple. t=(‘5’, ‘6’, ‘4’), change 5 to 7:

A

t=(‘7’,)+t[1:3] (or just [1:] in this case)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

tuple comparison: (0, 1, 2000) < (0, 3, 4) returns…

A

True. goes from 1st value to next, as soon as one is bigger than the corresponding value in the other tuple it is considered bigger by python.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

make a list of tuples, where value 2 of eacch tuple is a word in an original str and value 1 is its length

A
str='blah bloh blih'
words=txt.split()
t=list()
for word in words:
   t.append((len(word), word))
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

can then sort by length descending

A

t.sort(reverse=True)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

can then create list of words sorted by size ascending and alphabetical

A

res=list()
for length, word in t:
res.append(word)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

use a tuple m=(‘hello’, ‘there’) to assign multiple variables, a and b, to multiple values

A

a, b=m

a == ‘hello’, b == ‘there’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

swap values of a and b in one assignment

A

a, b=b, a

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

can this be done with other objects than tuples?

A

yes, eg strings and lists

17
Q

split email address into username and domain, assigning each a variable:

A

username, domain=address.split(‘@’)

where address has value of an email address

18
Q

‘items’ dictionary method

A

returns a list of tuples, where each tuple is a key-value pair (aka an item)
t=list(d.items())
t==[(key1, value1), (key2, value2), etc…]
As a d is dictionary, they’re in no particular order. but t is a list, and tuples are comparable, so the subsequent list can be sorted by key.

19
Q

2 lines of code to print out all tuples in format val, key of a dictionary, d:

A

for key, val in list(d.items()):

print(val, key)

20
Q

convert dictionary into list ordered by value:

A

lst=list()
for key, val in d.items():
lst.append((val, key))

lst.sort() (or lst.sort(reverse==True)

21
Q

print out the 10 in lst with lowest (or highest, see above) value

A

for key, val in lst[:10]:

print(key, val)

22
Q

say we ask users to enter 1st name, surname, phone number with input() function. How would you write a dictionary assignment mapping a last,first name pair to the telephone number? And then print them all out?

A

directory[last,first]=number where first=input(‘enter first name’) etc.
for last, first in directory:
print(first, last, directory[last,first])

23
Q

types of sequence:

A

string - sequence of characters
list - mutable sequence of values
tuple - immutable sequence of values

24
Q

sequence of sequences

A

can have lists of strings, list of tuples, lists of lists, tuples of lists, tuples of tuples etc. all behave similarly to the list of tuples touched on above

25
Q

Want to use a sequence as a dictionary key?

A

use tuple not list - lists are mutable

26
Q

Passing a sequence as an argument to a function?

A

use tuple - reduces the potential for aliasing-related errors

27
Q

data structures:

A

lists, tuples, dictionaries, probs more. sequence of a sequence is a compound data structure.