Files
30-seconds-of-code/snippet_template.md
2018-01-21 12:36:02 +05:30

16 lines
213 B
Markdown

### function_name
Describe briefly what the function does
Explain your method and the functions used.
``` python
def function_name(args):
# code
return 0
```
``` python
function_name(val) # result
```