Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions exercises/03-Print-Variables-In-The-Console/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# `03` Print the Variables in the console

You can also use the **print** function to print variables in the console, it's a great way to know their content, like this:
You can also use the **print** function to print variables in the console. It's a great way to check their current value, like this:
```py
my_super_variable = 'hello'
print(my_super_variable)
Expand All @@ -9,5 +9,4 @@ print(my_super_variable)
## 📝 Instructions:

1. Declare a new variable called **color** and assign the value "red" to it.
2. Then, print its value on the console.

2. Then, print its value on the console (you may have to scroll up in the terminal to see it!)