We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f732712 commit 61c7ab3Copy full SHA for 61c7ab3
exercises/18-The-Beatles/solution.hide.py
@@ -1,13 +1,13 @@
1
-# ✅↓ Write your code here. ↓✅
+# ✅↓ Write your code here ↓✅
2
def sing():
3
song = ""
4
for i in range(11):
5
if i == 4:
6
- song += "whisper words of wisdom, "
+ song += "there will be an answer, "
7
elif i == 10:
8
- song += "there will be an answer, let it be"
+ song += "whisper words of wisdom, let it be"
9
else:
10
song += "let it be, "
11
return song
12
13
-print(sing())
+print(sing())
0 commit comments