---
title: "016"
date: 2020-06-14
published: false
tags:
  - python
template: hot-tip
---


## Recieving `**kwargs`

``` python
def funnc(**kwargs):
    print(kwargs) # kwargs are a dictionary!

>>> func(one='a', two='b')
{'one': 'a', 'two': 'b'}
```
