Skip to content

Commit 4679f27

Browse files
authored
Update solution.hide.py
1 parent 48728ff commit 4679f27

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed
Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
# ✅↓ Write your code here ↓✅
22
def sing():
3-
song = ""
43
for i in range(11):
54
if i == 4:
6-
song += "there will be an answer,\n"
5+
print("there will be an answer,")
76
elif i == 10:
8-
song += "whisper words of wisdom, let it be"
7+
print("whisper words of wisdom, let it be")
98
else:
10-
song += "let it be,\n"
11-
return song
9+
print("let it be,")
10+
return None
1211

13-
print(sing())
12+
sing()

0 commit comments

Comments
 (0)