Home / Python Tips Generated By ChatGPT / Using ** for Unpacking Dictionaries in Python Unpack key-value pairs from a dictionary into function arguments. Source Code def greet(name, age): print(f"Hello, {name}. You are {age} years old.") person = {"name": "John", "age": 30} greet(**person)