---
title: "015"
description: "**"
date: 2020-06-14
published: false
tags:
  - python
template: hot-tip
---


## Recieving `*args`

``` python
def funnc(*args):
    print(args) # args are a list!

>>> func('a', 'b', 'c')
['a', 'b', 'c']
```

**order matters**
