primitives Flashcards

1
Q

What happens when you use end="!" in a print statement like print("Hello", end="!")?

A

It replaces the default newline character at the end of the print statement with “!”.

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

What’s the output of “yay!” if 0 > 1 else “nay!”?

A

“nay!”

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

What method adds an element to the end of a list?

A

list.append(element)

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

What’s the difference between li.append([5, 6]) and li.extend([5, 6])?

A
  • append() adds the entire object as a single element
  • extend() adds each element of the iterable individually
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do you access the last element of a list in Python?

A

Using negative indexing: my_list[-1]

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

What does the slice notation some_list[1:3] return?

A

It returns a new list containing elements from index 1 up to (but not including) index 3.

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

What does the slice notation some_list[::2] do?

A

It returns every 2nd element from the list, starting from the first element.

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

What’s the primary difference between a tuple and a list in Python?

A

Tuples are immutable, while lists are mutable.

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

How do you create a tuple with just one element?

A

Include a trailing comma: (1,)

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

What does this code do? a, *b, c = (1, 2, 3, 4, 5)

A

It unpacks the tuple into variables: a gets 1, c gets 5, b gets [2, 3, 4].

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

What type of objects can be used as dictionary keys in Python?

A

Only immutable types like:
* Integers
* Floats
* Strings
* Tuples (if they contain only immutable types)

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

What happens if you try to access a key that doesn’t exist in a dictionary?

A

It raises a KeyError.

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

What’s the syntax to get a dictionary value with a default if the key doesn’t exist?

A

my_dict.get(key, default_value)

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

What’s the difference between dict.setdefault(key, value) and dict[key] = value?

A

setdefault() only sets the value if the key doesn’t already exist, while dict[key] = value always sets/updates the value.

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

How do you create an empty set in Python?

A

empty_set = set()

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

What happens if you add an element to a set that already contains that element?

A

Nothing changes. Sets only contain unique elements.

17
Q

What set operation does the & symbol perform?

A

Intersection - returns elements that are common to both sets.

18
Q

What set operation does the | symbol perform?

A

Union - returns all elements from both sets (without duplicates).

19
Q

How do you check if an element exists in a set?

A

Use the in keyword.

20
Q

How do you swap two variables in Python in a single line?

A

x, y = y, x