Skip to content

Commit a084459

Browse files
authored
Merge pull request #156 from datacarpentry/annajiat-patch-2
Update 04-reusable.md
2 parents 839112d + 80b6bb1 commit a084459

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 whatever we want to print as a parameter. 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)