mirror of
https://github.com/LeCoupa/awesome-cheatsheets.git
synced 2026-01-26 05:08:03 -08:00
Merge 0ad1457ee7 into 0931c8fc67
This commit is contained in:
@@ -380,3 +380,22 @@ function_name()
|
|||||||
* We need not to specify the return type of the function.
|
* We need not to specify the return type of the function.
|
||||||
* Functions by default return `None`
|
* Functions by default return `None`
|
||||||
* We can return any datatype.
|
* We can return any datatype.
|
||||||
|
|
||||||
|
### Function arguments
|
||||||
|
|
||||||
|
- You can pass arguments in a function while calling to use inside it.
|
||||||
|
- Like if you want to add two numbers.
|
||||||
|
|
||||||
|
```
|
||||||
|
def sum(a , b):
|
||||||
|
return a + b
|
||||||
|
```
|
||||||
|
- In this a and b are passed and their sum is returned
|
||||||
|
|
||||||
|
-You can also assign the return value of this function to a variable
|
||||||
|
|
||||||
|
```
|
||||||
|
sum_of_two_numbers = sum(5,8) #calling the function and value assigned
|
||||||
|
print(sum_of_two_numbers)
|
||||||
|
```
|
||||||
|
-This will print sum of 5 and 8
|
||||||
|
|||||||
Reference in New Issue
Block a user