Skip to content

Commit f0443fc

Browse files
authored
Update README.md
1 parent 4679f27 commit f0443fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

exercises/18-The-Beatles/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ This is the chorus of one of the most famous Beatles songs:
1818
1919
## 📝 Instructions:
2020

21-
1. Create a function called `sing()` that returns a string with the lyrics that you can hear from 3:21 sec to the end of the song at 3:50 sec https://www.youtube.com/watch?v=QDYfEBY9NM4
21+
1. Create a function called `sing()` that prints on the console the lyrics that you can hear from 3:21 sec to the end of the song at 3:50 sec https://www.youtube.com/watch?v=QDYfEBY9NM4
22+
23+
2. Call your function at the end.
2224

2325
## 💻 Expected output:
2426

@@ -40,6 +42,4 @@ whisper words of wisdom, let it be
4042

4143
+ The words "let it be" repeat all the time, you should probably create a loop for that.
4244

43-
+ To make a line jump in a string, you must insert the following characters inside your string `\n`. For example, `"let it be,\n"`. Now when you print your string in the console, you will visualize it better if you need to.
44-
4545
+ If you need a refresher on loops and conditionals, check out this awesome resource: https://docs.python.org/3/tutorial/controlflow.html

0 commit comments

Comments
 (0)