Skip to content

Commit 16d9038

Browse files
authored
Update README.md
1 parent d893571 commit 16d9038

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

exercises/03-What-is-a-function/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ For example: If we want to get the sum of two numbers, we can declare a function
1010

1111
```python
1212
def sum(number1,number2):
13-
return number1 + number2
13+
return number1 + number2
1414
```
1515

16-
After the function is declared we can use it as many times as we want, like this:
16+
After the function is declared, we can use it as many times as we want, like this:
1717

1818
```python
1919
total = sum(2,3)
2020
total2 = sum(5,10)
2121

22-
print(total) # prints 5 on the console
23-
print(total2) # prints 15 on the console
22+
print(total) # Prints 5 on the console
23+
print(total2) # Prints 15 on the console
2424
```
2525

26-
# 📝 Instructions
26+
## 📝 Instructions:
2727

28-
1. Please calculate the sum between **3445324** and **53454423** and assign the result to a variable called `super_duper`
28+
1. Please calculate the sum between `3445324` and `53454423` and assign the result to a variable called `super_duper`

0 commit comments

Comments
 (0)