Two ways to create a dictionary: Curly braces with key-value pairs: python person = {"name": "Alice", "age": 30}
The dict() function: python person = dict(name="Alice", age=30) Empty dictionary: python empty = {} empty = dict() Both work. Curly braces are more common. The colon separates keys from values.