Create a dictionary in Python

Question:
How do you create a dictionary called 'data' with the key 'id' and value '100'?

  1. data = {id: 100}
  2. data = ['id': 100]
  3. data = {'id': 100}
  4. data = (id: 100)
Answer:
C - is the correct answer