We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2576e3 commit fa258bfCopy full SHA for fa258bf
exercises/03-What-is-a-function/README.md
@@ -1,6 +1,6 @@
1
# `03` What is a function?
2
3
-You can see a function as a **fragment of code** encapsulated between curly brackets to be able to use it several times.
+You can see a function as a **fragment of code** we can use several times.
4
5
For example: If we want to get the sum of two numbers, we can declare a function called `sum` that returns the sum of number1 and number2:
6
exercises/07-lambda-function-two/README.md
@@ -1,7 +1,7 @@
# `07` Lambda functions
Take aim and note
-Arrow functions allows a short syntax for writing function expressions.
+Lambda functions allows a short syntax for writing function expressions.
```python
7
multy = lambda x, y: x * y
0 commit comments