Skip to content

Commit 31fb467

Browse files
committed
Update Mini Test
1 parent a94d204 commit 31fb467

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed
Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
"""
2-
Reto semanal - I
2+
@author taicoding
3+
Tema: Listas 📋
34
¿Cuál es el resultado? 👩🏻‍🏫👩🏻‍💻🐍
45
"""
56

67
python = [1, 2, 3, 4, 5, 6]
78
print(python[2:5])
8-
"""
9-
👍 [2, 5] ❤️ [3, 4, 5]
10-
😮 [2, 3, 4] 🙏 [4, 5, 6]
11-
"""
Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
"""
22
@author taicoding
3-
Tema: Tuplas
3+
Tema: Tuplas 🐍🧮
44
¿Cuál es el resultado? 👩🏻‍🏫👩🏻‍💻🐍
55
"""
6-
pares = (2, 4, 6)
7-
impares = (1, 3, 5)
8-
print(pares > impares)
6+
7+
menu = ("🧁", "🍪", "🍟", "🍕", "🍨")
8+
helado = menu.index("🍨")
9+
print(helado)

0 commit comments

Comments
 (0)