From 3ec7a2f204631e7a1a7c6085ba272ac2b975cc84 Mon Sep 17 00:00:00 2001 From: Re1nGer <63101847+Re1nGer@users.noreply.github.com> Date: Mon, 1 Apr 2024 20:19:06 +0300 Subject: [PATCH] fix(curriculum): Update instructions Learn String Manipulation by Building a Cypher Step 3 (#54267) --- .../65951b637ddec63611c482c0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/learn-string-manipulation-by-building-a-cipher/65951b637ddec63611c482c0.md b/curriculum/challenges/english/07-scientific-computing-with-python/learn-string-manipulation-by-building-a-cipher/65951b637ddec63611c482c0.md index 4e76601eb7b..101abfd8979 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/learn-string-manipulation-by-building-a-cipher/65951b637ddec63611c482c0.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/learn-string-manipulation-by-building-a-cipher/65951b637ddec63611c482c0.md @@ -9,7 +9,7 @@ dashedName: step-3 You can use the built-in function `print()` to print the output of your code on the terminal. -Functions are reusable code blocks that you can call (run) when you need them. To call (or invoke) a function, you just need to write a pair of parentheses next to its name. You will learn more about functions very soon. +Functions are reusable code blocks that you can call, or invoke, to run their code when you need them. To call a function, you just need to write a pair of parentheses next to its name. You will learn more about functions very soon. For now, go to a new line and add an empty call to the `print()` function. You should not see any output yet.