Change to snake_case

This commit is contained in:
Rohit Tanwar
2018-01-21 12:36:02 +05:30
committed by GitHub
parent 24ade51ca4
commit 01c43e6cac

View File

@ -1,15 +1,15 @@
### functionName
### function_name
Describe briefly what the function does
Explain your method and the functions used.
``` python
def functionName(args):
def function_name(args):
# code
return 0
```
``` python
functionName(val) # result
```
function_name(val) # result
```