Skip to content

Commit 8092901

Browse files
authored
Update README.md
1 parent c421c20 commit 8092901

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

exercises/01-Console/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ tutorial: "https://www.youtube.com/watch?v=2sV-2frucUs"
66

77
In Python, we use **print** to make the computer write anything we want (the content of a variable, a given string, etc.) in something called "the console".
88

9-
Every programming language has a console, as it was the only way to interact with the users at the beginning (before Windows or MacOS arrived).
9+
Every programming language has a console, as it was the only way to interact with the users at the beginning (before Windows or macOS arrived).
1010

11-
Today, printing in the console is used mostly as a monitoring and debugging tool, ideal to leave a trace of the content of variables during the program execution.
11+
Today, printing in the console is mostly used as a monitoring and debugging tool, ideal for leaving a trace of the content of variables during the program's execution.
1212

1313
This is an example of how to use it:
1414

@@ -18,13 +18,13 @@ print("How are you?")
1818

1919
## 📝 Instructions:
2020

21-
1. Use **print** to print `Hello World!` on the console.
21+
1. Use `print()` to print `Hello World!` on the console.
2222

2323

2424
## 💡 Hints:
2525

2626
+ Remember, to run the code and see the output on the console, click on the box icon in the top left of the screen:
2727

28-
https://i.imgur.com/w6u4aDd.png
28+
![The compile button](https://i.imgur.com/w6u4aDd.png)
2929

3030
+ Feel free to try other things as well.

0 commit comments

Comments
 (0)