Topic 4 Flashcards
primative data type examples
int, float, bool, string
non-primative data type examples
tuple, list, set, dictionary
behaviour of tuple
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
behaviour of lists
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
behaviour of set
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
behaviour of dictionary
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
common use of tuples
return multiple values from a function
for data of constant structure (order has meaning + consistency)
swapping of variables without using temporary variable
indexing
accessing a specific item
my_list[i]
Returns item i in the list (indexing above)
my_list[0]
First item in the list
my_list[-1]
Last item in the list
slicing
accessing parts of the list
my_list[start:stop:stride]
Items from start to stop-1
with step size of stride
my_list[start:stop]
Items from start to stop-1, stride
my_list[start:]
Items from start to rest of list
my_list[:stop]
Items from beginning through stop-
my_list[::stride]
Every stride item of the whole list;
negative stride -> counts from end
cloning
creating a shallow copy of the list
my_list[::]
my_list[:]
methods
functions that are linked to a particular object
“removing items” from list methods
pop or remove
pop: removes item with (insert index) or last item if () empty
remove: removes given value
split and join method in strings
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
method syntax
<object_name>.<method_name>(<parameters>)
</parameters></method_name></object_name>
my_set =
{1, 2, 3.14, “word”, False}
can be anything
my_dict =
{“name” : “Magnus”, “age” : 25}
key : value (item pair), key : value (item pair)
student_dict =
dict(zip(names, ages)
e.g. {‘Bob’: 24, ‘Kenneth’: 27, ‘Alice’: 22, ‘Amelie’: 45}
empty_set =
set()
use of in operator
to iterate through an iterable
to check if a value is present in an iterable