Skip to content

Commit cae49ef

Browse files
Update README.md
1 parent de79fff commit cae49ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/02-Declare-Variables/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ In this example, `name` is the variable, acting like a box to store the value `"
1414

1515
## 📝 Instructions:
1616

17-
1. Declare a new variable with the string value `"Yellow"` and print the value to the console.
17+
1. Declare a new variable named `name` with the string value `"Yellow"` and print the value to the console.
1818

1919
2. Then, print its value on the console using `print(name)`.
2020

2121
## 💡 Hints:
2222

23-
+ The name of the variable can be whatever you want, but the value inside has to be the string "Yellow".
23+
+ The variable's name must be `name` to pass the tests, and the value inside has to be the string "Yellow".
2424

2525
+ If you need further explanation on what **strings** are and how they work in Python, you can watch this clip: https://youtube.com/clip/UgkxyQ_JLmgSUL4l25c8Ly7cCRvk1Gm-EchU (`ctrl + click` on the link to open the video)

0 commit comments

Comments
 (0)