Skip to content

Commit 185c68c

Browse files
authored
Update README.md
1 parent 86ba89b commit 185c68c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

exercises/02-Hello-World/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@ tutorial: "https://www.youtube.com/watch?v=voBO7a0KPtE"
44

55
# `02` Hello World
66

7-
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`.
7+
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 language has **functions** to integrate with the console, as it was the only way to interact with the users at the beginning (before the Windows or Linux or MacOS arrived).
9+
Every language has **functions** to integrate with the console, as it was the only way to interact with the users at the beginning (before Windows, Linux or macOS arrived).
1010

11-
Today, printing in the console is used mostly as a monitoring 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:
14+
1415
```py
1516
print("How are you?")
1617
```
1718

1819
## 📝 Instructions:
1920

20-
1. Use `print` to display `"Hello World"` on the console. Feel free to try other things as well.
21+
1. Use `print()` to display `"Hello World"` on the console. Feel free to try other things as well.
2122

2223
## 💡 Hint:
2324

24-
+ :video_camera: You can watch this 5 minutes video about the console:
25-
https://www.youtube.com/watch?v=vROGBvX_MHQ
25+
+ 📹 You can watch this 2 minute video about the console: https://www.youtube.com/watch?v=vROGBvX_MHQ

0 commit comments

Comments
 (0)