016 === Date: June 14, 2020 ## Recieving `**kwargs` ``` python def funnc(**kwargs): print(kwargs) # kwargs are a dictionary! >>> func(one='a', two='b') {'one': 'a', 'two': 'b'} ```