Topic 4 Flashcards

1
Q

primative data type examples

A

int, float, bool, string

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

non-primative data type examples

A

tuple, list, set, dictionary

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

behaviour of tuple

A

ordered sequence of items
defined using () around sequence of items
immutable (can’t be reassigned)
can hold any data type + mix types
can be iterated over

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

behaviour of lists

A

ordered sequence of items
defined using [] around sequence of items
mutable (can be reassigned)
can hold any data type + can mix but usually doesn’t
can be iterated over
can do indexing and slicing

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

behaviour of set

A

unordered sequence of unique items
defined using {} around sequence of items
immutable (can’t be reassigned)
can hold mixed data types
can be iterated over

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

behaviour of dictionary

A

ordered sequence of key:value pairs/ items
defined using dict () around sequence of key-value pairs or {} for empty dict
mutable (can’t be reassigned) but keys must be unique and immutable
values can be any data type
can be iterated over

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

common use of tuples

A

return multiple values from a function
for data of constant structure (order has meaning + consistency)
swapping of variables without using temporary variable

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

indexing

A

accessing a specific item

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

my_list[i]

A

Returns item i in the list (indexing above)

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

my_list[0]

A

First item in the list

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

my_list[-1]

A

Last item in the list

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

slicing

A

accessing parts of the list

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

my_list[start:stop:stride]

A

Items from start to stop-1
with step size of stride

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

my_list[start:stop]

A

Items from start to stop-1, stride

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

my_list[start:]

A

Items from start to rest of list

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

my_list[:stop]

A

Items from beginning through stop-

17
Q

my_list[::stride]

A

Every stride item of the whole list;
negative stride -> counts from end

18
Q

cloning

A

creating a shallow copy of the list
my_list[::]
my_list[:]

19
Q

methods

A

functions that are linked to a particular object

20
Q

“removing items” from list methods

A

pop or remove
pop: removes item with (insert index) or last item if () empty
remove: removes given value

21
Q

split and join method in strings

A

can convert string to a list by separating string on a string parameter using (“ “)
or turn list of strings into a string by combining each item with a string separator

22
Q

method syntax

A

<object_name>.<method_name>(<parameters>)
</parameters></method_name></object_name>

22
Q

my_set =

A

{1, 2, 3.14, “word”, False}
can be anything

22
Q

my_dict =

A

{“name” : “Magnus”, “age” : 25}
key : value (item pair), key : value (item pair)

22
Q

student_dict =

A

dict(zip(names, ages)
e.g. {‘Bob’: 24, ‘Kenneth’: 27, ‘Alice’: 22, ‘Amelie’: 45}

22
Q

empty_set =

23
Q

use of in operator

A

to iterate through an iterable
to check if a value is present in an iterable