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 8b3c2eb commit 75f4cf4Copy full SHA for 75f4cf4
exercises/02.4-One_last_looping/solution.hide.py
@@ -0,0 +1,8 @@
1
+names = ['Esmeralda','Kiko','Ruth','Lebron','Pedro','Maria','Lou','Fernando','Cesco','Bart','Annie']
2
+
3
+#Your code here:
4
+names[1]= "Steven"
5
+names[-1]= "Pepe"
6
+names[0]= names[2] + names[4]
7
+for i in range(len(names) - 1, -1 , -1):
8
+ print(names[i])
0 commit comments