True or False: Tuples can be reassigned
False - tuples are immutable (can index but not modify)
What is the most common use case for tuples in SWE interviews?
Key for hash map:
myMap = {(1, 2): 3}
Why is using a tuple better than using a list as a key in a hash map?
Lists can’t be keys in Python. Tuples are a great way to get around this