Quiz 1 Flashcards

1
Q

len(list)

A

Returns the length of a list or any collection.

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

type(variable)

A

Identifies the type of the variable.

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

isinstance(variable, type)

A

Checks if a variable is of a specific type.

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

append(element)

A

Adds an element to the end of the list.

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

insert(index, element)

A

Inserts an element at a specific position.

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

pop(index)

A

Removes and returns an element at the specified index.

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

sort()

A

Sorts the list in ascending order.

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

slice notation [start:stop:step]

A

Access specific portions of a list.

The first possible position is 0, and the slice will get elements up to, but not including stop.

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

dict[key] = value

A

Adds or updates a key-value pair

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

del dict[key]

A

Removes the key-value pair with the given key.

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

dict.pop(key)

A

Removes and returns the value for the specified key

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

dict.keys()

A

Returns a list of all keys in the dictionary.

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

dict.values()

A

Returns a list of all values in the dictionary.

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

set_one.union(set_two)

A

Returns a new set with elements from both sets.

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

set_one.intersection(set_two)

A

Returns a set with elements common to both sets.

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

set_one.difference(set_two)

A

Returns elements in set_one but not in set_two.

17
Q

int()

A

Converts a value to an integer.

18
Q

float()

A

Converts a value to a float.

19
Q

str()

A

Converts a value to a string.

20
Q

bool()

A

Converts a value to a boolean.

21
Q

Math Module Functions:

A
  1. math.log(x): Returns the natural logarithm of x.
  2. math.exp(x): Returns the exponential of x.
  3. math.ceil(x): Rounds x up to the nearest integer.
  4. math.floor(x): Rounds x down to the nearest integer.
22
Q

Variable types

A

integer: whole number
float: not whole number
string: text
boolean: true or false

23
Q

Tuples

A
  • 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.
24
Q

Container types

A

– list
– dict
– tuple
– set

25
Q

Lists

A
  • 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)
26
Q

Dicts

A
  • 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 {}.
27
Q

Set container

A
  • 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.
28
Q

Which container should you use?

A
  • 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.