Skip to content

Commit 0ad2fa3

Browse files
authored
Update README.md
1 parent 026c324 commit 0ad2fa3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

exercises/001-hello_world/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22

33
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".
44

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

7-
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.
7+
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.
88

99
## 📝 Instructions:
1010

1111
1. Use the `print()` function to print `"Hello World"` on the console. Feel free to try other things as well.
1212

13-
## Example:
13+
## 📎 Example:
1414

1515
```py
1616
print("How are you?")
1717
```
1818

1919
## 💡 Hint:
2020

21-
+ 5 minutes video about [the console](https://www.youtube.com/watch?v=1RlkftxAo-M)
21+
+ 2 minute video about [the console](https://www.youtube.com/watch?v=vROGBvX_MHQ&ab_channel=edX)

0 commit comments

Comments
 (0)