Skip to content

Update 10.Functions.md #70

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 10.Functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ Let's write the same code, but **with functions** this time.
### 1.3 Syntax

In Python functions are defined by `def` keyword <span style="color: orange">_followed by the name_</span> of the function
, then curly brackets `()` and semicolon `:`.
, then round brackets `()` and semicolon `:`.

***NOTE***: Take a look at **_indentation_**, in case it's wrong the `Pyhton` interpreter will not be able to compile the
***NOTE***: Take a look at **_indentation_**, in case it's wrong the `Python` interpreter will not be able to compile the
code.

#### Example
Expand Down