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


## Sending `*args`

``` python
def func(one, two):
    print(f'two is {two}')


>>> func(*['a', 'b'])
two is b
```

**order matters**
