Keywords - 'in' Flashcards

1
Q

if name == “John” or name == “Billy” or name == “Tom”:

What’s a way to write this without repeatedy using “or”

A

if name in [“John”, “Billy”, “Tom”]:

You can also use a set for faster lookup (especially with many items), E.g., if name in {“John”, “Billy”, “Tom”}:

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

lst = [3, 5, 8]
for n in lst:
print(n)

What will the above print

A

3
5
8

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

lst = [3, 5, 8]
for n in range(len(lst)):
print(n)

What will the above print

A

0
1
2

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