Skip to content

Commit 30aeb8d

Browse files
authored
basic python is demi completed (#21)
1 parent de76782 commit 30aeb8d

File tree

1 file changed

+113
-84
lines changed

1 file changed

+113
-84
lines changed

learning-path/python-developer.md

Lines changed: 113 additions & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ Python!
3434

3535
🧑‍💻: Codigo practico
3636

37-
Los nombres con asterisco al final (*) son con contenido en inglés
37+
📝: Blog post
38+
39+
Los nombres con asterisco al final (*) son con contenido en inglés.
3840

3941

4042
## Python Básico
@@ -52,50 +54,84 @@ digraph G {
5254
color=lightgrey;
5355
fontsize = 20;
5456
55-
t12 [label="Tópico 12", href=""];
56-
t11 [label="Tópico 11", href=""];
57-
t10 [label="Tópico 10", href=""];
58-
t9 [label="Tópico 9", href=""];
59-
t8 [label="Tópico 8", href=""];
60-
t7 [label="Tópico 7", href=""];
61-
t6 [label="Tópico 6", href=""];
62-
t5 [label="Tópico 5", href=""];
63-
t4 [
57+
as4 [
58+
label="🧑‍💻 How to Do a Binary Search in Python*",
59+
href="https://realpython.com/binary-search-python/",
60+
color="lightgreen",
61+
target="_top"];
62+
as3 [
63+
label="🧑‍💻 30 days of Python*",
64+
href="https://github.com/Asabeneh/30-Days-Of-Python?tab=readme-ov-file",
65+
color="lightgreen",
66+
target="_top"];
67+
as2 [
68+
label="📗 Data Structures & Algorithms in Python*",
69+
href="https://www.amazon.com/Structures-Algorithms-Python-Robert-Lafore/dp/013485568X/",
70+
color="lightgreen",
71+
target="_top"];
72+
as1 [
73+
label="📗 Algoritmos y Estructura de Datos con Python",
74+
href="https://www.amazon.com/Algoritmos-Estructuras-Datos-Python-cuestionarios-ebook/dp/B0CW6C19MD/",
75+
color="lightgreen",
76+
target="_top"];
77+
bp3 [label="📹 6 Proyectos de Python Básicos\nCurso Completo Paso a Paso", href="https://www.youtube.com/watch?v=tWnyBD2src0", color="lightgreen", target="_top"];
78+
bp2 [
79+
label="📝 Estructura del proyecto\npara una aplicación Python",
80+
href="https://www.delftstack.com/es/howto/python/python-project-structure/",
81+
color="lightgreen",
82+
target="_top"];
83+
bp1 [
84+
label="📝 25 Proyectos en Python\npara principiantes:\nIdeas para comenzar\na programar en Python",
85+
href="https://www.freecodecamp.org/espanol/news/25-proyectos-en-python-para-principiantes/",
86+
color="lightgreen",
87+
target="_top"];
88+
cc2 [
89+
label="📝 Clean Code in Python*",
90+
href="https://testdriven.io/blog/clean-code-python/",
91+
color="lightgreen",
92+
target="_top"];
93+
cc1 [
94+
label="📝 Guía en Español: Clean Code Python",
95+
href="https://github.com/sryvcr/clean-code-python-es",
96+
color="lightgreen",
97+
target="_top"];
98+
f4 [
6499
label="🧑‍💻 30 days of Python*",
65-
href="https://github.com/Asabeneh/30-Days-Of-Python?tab=readme-ov-file"
66-
color="lightgreen"
100+
href="https://github.com/Asabeneh/30-Days-Of-Python?tab=readme-ov-file",
101+
color="lightgreen",
67102
target="_top"];
68-
t3 [
103+
f3 [
69104
label="🎓 Python para principiantes \n (Microsoft)",
70-
href="https://learn.microsoft.com/es-es/training/paths/beginner-python/"
71-
color="lightgreen"
105+
href="https://learn.microsoft.com/es-es/training/paths/beginner-python/",
106+
color="lightgreen",
72107
target="_top"];
73-
t2 [
108+
f2 [
74109
label="📹 Curso de Python \n desde cero (MoureDev)",
75-
href="https://www.youtube.com/watch?v=Kp4Mvapo5kc"
76-
color="lightgreen"
110+
href="https://www.youtube.com/watch?v=Kp4Mvapo5kc",
111+
color="lightgreen",
77112
target="_top"];
78-
t1 [
113+
f1 [
79114
label="📗 Curso intensivo de python",
80-
href="https://anayamultimedia.es/libro/titulos-especiales/curso-intensivo-de-python-2a-edicion-eric-matthes-9788441543348/"
81-
color="lightgreen"
115+
href="https://anayamultimedia.es/libro/titulos-especiales/curso-intensivo-de-python-2a-edicion-eric-matthes-9788441543348/",
116+
color="lightgreen",
82117
target="_top"];
83-
algostruct [label="Estructura de Datos\ny\nAlgoritmos Básicos"];
84-
basic_arch [label="Arquitectura\nBásica"];
85-
clean_code [label="Clean Code"];
86118
fundamentals [label="Fundamentos\nBásicos de Python"];
87-
fundamentals -> t4;
88-
fundamentals -> t3;
89-
fundamentals -> t2;
90-
fundamentals -> t1;
91-
clean_code -> t6;
92-
clean_code -> t5;
93-
basic_arch -> t9;
94-
basic_arch -> t8;
95-
basic_arch -> t7;
96-
algostruct -> t12;
97-
algostruct -> t11;
98-
algostruct -> t10;
119+
clean_code [label="Clean Code"];
120+
basic_projects [label="Proyectos\nBásicos"];
121+
algostruct [label="Estructura de Datos\ny\nAlgoritmos Básicos"];
122+
fundamentals -> f4;
123+
fundamentals -> f3;
124+
fundamentals -> f2;
125+
fundamentals -> f1;
126+
clean_code -> cc2;
127+
clean_code -> cc1;
128+
basic_projects-> bp3;
129+
basic_projects-> bp2;
130+
basic_projects-> bp1;
131+
algostruct -> as4;
132+
algostruct -> as3;
133+
algostruct -> as2;
134+
algostruct -> as1;
99135
}
100136
}
101137
```
@@ -117,55 +153,48 @@ digraph G {
117153
color=lightblue;
118154
fontsize = 20;
119155
120-
t18 [label="Tópico 18", href=""];
121-
t17 [label="Tópico 17", href=""];
122-
t16 [label="Tópico 16", href=""];
123-
t15 [label="Tópico 15", href=""];
124-
t14 [label="Tópico 14", href=""];
125-
t13 [label="Tópico 13", href=""];
126-
t12 [label="Tópico 12", href=""];
127-
t11 [label="Tópico 11", href=""];
128-
t10 [label="Tópico 10", href=""];
129-
t9 [label="Tópico 9", href=""];
130-
t8 [label="Tópico 8", href=""];
131-
t7 [label="Tópico 7", href=""];
132-
t6 [label="Tópico 6", href=""];
133-
t5 [label="Tópico 5", href=""];
134-
t4 [label="Tópico 4", href=""];
135-
t3 [label="Tópico 3", href=""];
136-
t2 [label="Tópico 1", href=""];
137-
t1 [label="Tópico 1", href=""];
138-
advanced_python [id="advanced-python", label="Python Avanzado"];
139-
leetcode [label="Leetcode"];
140-
db [label="Bases de Datos"];
141-
python_projects [label="Proyectos en Python"];
142-
command_line [label="Línea de Comandos\nen Python"];
143-
design_patterns [label="Patrones de Diseño\nen Python"];
156+
lc3 [label="Tópico 18", href="", color="lightgreen", target="_top"];
157+
lc2 [label="Tópico 17", href="", color="lightgreen", target="_top"];
158+
lc1 [label="Tópico 16", href="", color="lightgreen", target="_top"];
159+
db3 [label="Tópico 15", href="", color="lightgreen", target="_top"];
160+
db2 [label="Tópico 14", href="", color="lightgreen", target="_top"];
161+
db1 [label="Tópico 13", href="", color="lightgreen", target="_top"];
162+
pp3 [label="Tópico 12", href="", color="lightgreen", target="_top"];
163+
pp2 [label="Tópico 11", href="", color="lightgreen", target="_top"];
164+
pp1 [label="Tópico 10", href="", color="lightgreen", target="_top"];
165+
cl3 [label="Tópico 9", href="", color="lightgreen", target="_top"];
166+
cl2 [label="Tópico 8", href="", color="lightgreen", target="_top"];
167+
cl1 [label="Tópico 7", href="", color="lightgreen", target="_top"];
168+
dp3 [label="Tópico 6", href="", color="lightgreen", target="_top"];
169+
dp2 [label="Tópico 5", href="", color="lightgreen", target="_top"];
170+
dp1 [label="Tópico 4", href="", color="lightgreen", target="_top"];
171+
aas3 [label="Tópico 3", href="", color="lightgreen", target="_top"];
172+
aas2 [label="Tópico 1", href="", color="lightgreen", target="_top"];
173+
aas1 [label="Tópico 1", href="", color="lightgreen", target="_top"];
144174
advanced_algostruct [label="Estructurad de Datos\ny\nAlgoritmos Avanzados"];
145-
advanced_python -> leetcode;
146-
advanced_python -> db;
147-
advanced_python -> python_projects;
148-
advanced_python -> command_line;
149-
advanced_python -> design_patterns;
150-
advanced_python -> advanced_algostruct;
151-
advanced_algostruct -> t3;
152-
advanced_algostruct -> t2;
153-
advanced_algostruct -> t1;
154-
design_patterns -> t6;
155-
design_patterns -> t5;
156-
design_patterns -> t4;
157-
command_line -> t9;
158-
command_line -> t8;
159-
command_line -> t7;
160-
python_projects -> t12;
161-
python_projects -> t11;
162-
python_projects -> t10;
163-
db -> t15;
164-
db -> t14;
165-
db -> t13;
166-
leetcode -> t18;
167-
leetcode -> t17;
168-
leetcode -> t16;
175+
design_patterns [label="Patrones de Diseño\nen Python"];
176+
command_line [label="Línea de Comandos\nen Python"];
177+
python_projects [label="Proyectos en Python"];
178+
db [label="Bases de Datos"];
179+
leetcode [label="Leetcode"];
180+
advanced_algostruct -> aas3;
181+
advanced_algostruct -> aas2;
182+
advanced_algostruct -> aas1;
183+
design_patterns -> dp3;
184+
design_patterns -> dp2;
185+
design_patterns -> dp1;
186+
command_line -> cl3;
187+
command_line -> cl2;
188+
command_line -> cl1;
189+
python_projects -> pp3;
190+
python_projects -> pp2;
191+
python_projects -> pp1;
192+
db -> db3;
193+
db -> db2;
194+
db -> db1;
195+
leetcode -> lc3;
196+
leetcode -> lc2;
197+
leetcode -> lc1;
169198
}
170199
}
171200
```

0 commit comments

Comments
 (0)