Quiz 1 Flashcards
len(list)
Returns the length of a list or any collection.
type(variable)
Identifies the type of the variable.
isinstance(variable, type)
Checks if a variable is of a specific type.
append(element)
Adds an element to the end of the list.
insert(index, element)
Inserts an element at a specific position.
pop(index)
Removes and returns an element at the specified index.
sort()
Sorts the list in ascending order.
slice notation [start:stop:step]
Access specific portions of a list.
The first possible position is 0, and the slice will get elements up to, but not including stop.
dict[key] = value
Adds or updates a key-value pair
del dict[key]
Removes the key-value pair with the given key.
dict.pop(key)
Removes and returns the value for the specified key
dict.keys()
Returns a list of all keys in the dictionary.
dict.values()
Returns a list of all values in the dictionary.
set_one.union(set_two)
Returns a new set with elements from both sets.
set_one.intersection(set_two)
Returns a set with elements common to both sets.
set_one.difference(set_two)
Returns elements in set_one but not in set_two.
int()
Converts a value to an integer.
float()
Converts a value to a float.
str()
Converts a value to a string.
bool()
Converts a value to a boolean.
Math Module Functions:
- math.log(x): Returns the natural logarithm of x.
- math.exp(x): Returns the exponential of x.
- math.ceil(x): Rounds x up to the nearest integer.
- math.floor(x): Rounds x down to the nearest integer.
Variable types
integer: whole number
float: not whole number
string: text
boolean: true or false
Tuples
- Tuples are quite similar to lists in that you access elements by position, but they are “fixed.”
- You can’t change the number of elements in the tuple.
- You can’t change the objects stored in each slot.
- The formal term is that they are “immutable”. It is like they are set in concrete.
Container types
– list
– dict
– tuple
– set
Lists
- variable length container, within which the elements can be modified (mutable – compare to a tuple later).
- It can contain a mix of variable types.
- It can be “nested”, where elements inside the list are themselves other containers.
- List elements can be accessed by position (starting at 0)
Dicts
- A dict contains “key-value” pairs.
- You don’t access a dict by position (unlike a list), but rather by the name of the key.
- This can be much more efficient for looking up values, rather than maintaining and searching lists.
- To create a dict directly use curly braces {}.
Set container
- has no ordering (so you can’t access it by position), and its elements are unique.
- Which is the same as a set in mathematics.
- Like a dict, they can be created using the curly brackets {}.
- They can also be created by using the set function.
- The set is mutable, but its elements must be immutable.
Which container should you use?
- This will be very dependent on the objective of the problem.
- A dictionary is going to be useful when you are frequently looking up values by name.
- A list will be useful, when there is an ordered type structure to the underlying data and you are looking
things up by position.