Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 5ef5ffb

Browse files
cambiar nombres y numeros de carpetas y archivos para mas coherencia
1 parent d9a4e02 commit 5ef5ffb

File tree

27 files changed

+48
-6
lines changed

27 files changed

+48
-6
lines changed

‎.learn/resets/01-hello-world/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Your code here
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
my_list = ['sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday']
2+
3+
# 1. Print the 3rd item here
4+
5+
# 2. Change the value of 'thursday' to None
6+
7+
# 3. Print that position now here
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
my_list = [4,5,734,43,45,100,4,56,23,67,23,58,45,3,100,4,56,23]
2+
3+
# Print in the console the 1st element on the list
4+
5+
# Print in the console the 4th element on the list
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# import the random package here "import random"
2+
import random
3+
4+
def generate_random_list():
5+
aux_list = []
6+
randonlength = random.randint(1, 100)
7+
8+
for i in range(randonlength):
9+
aux_list.append(randonlength)
10+
i += i
11+
return aux_list
12+
13+
my_stupid_list = generate_random_list()
14+
15+
# Write your code below this comment, good luck!
16+

‎.learn/resets/02-Loop-list/app.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
my_list = [232,32,1,4,55,4,3,32,3,24,5,5,5,34,2,35,5365743,52,34,3,55]
2+
3+
# Your code here
4+
print(my_list[0])

‎.learn/resets/05.1-sum_odd_items/app.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
my_list = [4,5,734,43,45,100,4,56,23,67,23,58,45]
2+
3+
# Your code here
File renamed without changes.

‎exercises/01.5-loop-seventeen/README.es.md renamed to ‎exercises/01.4-loop-seventeen/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `01.5` Loop from 1 to 17
1+
# `01.4` Loop from 1 to 17
22

33
Para iterar un número específico de veces, podemos usar:
44

‎exercises/01.5-loop-seventeen/README.md renamed to ‎exercises/01.4-loop-seventeen/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
tutorial: "https://www.youtube.com/watch?v=qO3ZNWrkeGg"
33
---
44

5-
# `01.5` Loop from 1 to 17
5+
# `01.4` Loop from 1 to 17
66

77
To loop a specific number of times, we can use:
88

File renamed without changes.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /