1. How do you create a Python dictionary from a list of key-value pair tuples?
Use the dict() constructor with the list of tuples as an argument
Explicação
The correct way to create a dictionary from a list of key-value pair tuples is to use the dict() constructor with the list as an argument, as explicitly stated in the context.