Compare commits

...

5 Commits

Author SHA1 Message Date
kaushikaryan04
90f2c37d83 Merge 0ad1457ee7 into 2aee46f169 2024-05-23 02:37:54 -03:00
Julien Le Coupanec
2aee46f169 Merge pull request #381 from FabricioLopees/fix/java
Update readme: fix grammatical error in java.md
2024-04-15 10:53:51 +02:00
FabricioLopees
22977d5ca1 update readme: fix grammatical error in java.md 2024-04-13 13:05:38 -03:00
FabricioLopees
a2c99c9674 update readme: fix grammatical error in java.md 2024-04-13 12:52:16 -03:00
kaushikaryan04
0ad1457ee7 Function Arguments 2021-08-21 23:30:15 +05:30
2 changed files with 20 additions and 1 deletions

View File

@@ -286,7 +286,7 @@ for(dataType item : array) {
### ACCESS MODIFIERS ### ACCESS MODIFIERS
1. defualt(No keyword required) 1. default(No keyword required)
2. private 2. private
3. public 3. public
4. protected 4. protected

View File

@@ -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