Skip to content

Commit 44137c8

Browse files
authored
Update 04-reusable.md
1 parent 0ce83c6 commit 44137c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_episodes/04-reusable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ In addition to the functions provided by Python, you can write your own function
2323

2424
Functions are used when a section of code needs to be repeated at various different points in a program. It saves you re-writing it all. In reality you rarely need to repeat the exact same code. Usually there will be some variation in variable values needed. Because of this, when you create a function you are allowed to specify a set of `parameters` which represent variables in the function.
2525

26-
In our use of the `print` function we have provided as a parameter, whatever it is we wanted to `print`. Typically whenever we use the print function we pass a different parameter value.
26+
In our use of the print function, we have provided whatever we want to print as a parameter. Typically whenever we use the print function we pass a different parameter value.
2727

2828
The ability to specify parameters make functions very flexible.
2929

0 commit comments

Comments
 (0)