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”}:
2
Q
lst = [3, 5, 8]
for n in lst:
print(n)
What will the above print
A
3
5
8
3
Q
lst = [3, 5, 8]
for n in range(len(lst)):
print(n)
What will the above print
A
0
1
2