19 lines
249 B
Markdown
19 lines
249 B
Markdown
---
|
|
title: function_name
|
|
tags: utility,intermediate
|
|
---
|
|
|
|
Explain briefly what the snippet does.
|
|
|
|
Explain briefly how the snippet works.
|
|
|
|
```py
|
|
def function_name(args):
|
|
# code
|
|
return 0
|
|
```
|
|
|
|
```py
|
|
function_name(val) # result
|
|
```
|