-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcurso_intro_python.html
More file actions
732 lines (652 loc) · 21.4 KB
/
curso_intro_python.html
File metadata and controls
732 lines (652 loc) · 21.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta http-equiv="X-UA-Compatible" content="IE=EDGE" />
<title>Curso de introducción a Python</title>
<script src="site_libs/header-attrs-2.30/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/cosmo.min.css" rel="stylesheet" />
<script src="site_libs/bootstrap-3.3.5/js/bootstrap.min.js"></script>
<script src="site_libs/bootstrap-3.3.5/shim/html5shiv.min.js"></script>
<script src="site_libs/bootstrap-3.3.5/shim/respond.min.js"></script>
<style>h1 {font-size: 34px;}
h1.title {font-size: 38px;}
h2 {font-size: 30px;}
h3 {font-size: 24px;}
h4 {font-size: 18px;}
h5 {font-size: 16px;}
h6 {font-size: 12px;}
code {color: inherit; background-color: rgba(0, 0, 0, 0.04);}
pre:not([class]) { background-color: white }</style>
<script src="site_libs/navigation-1.1/tabsets.js"></script>
<link href="site_libs/highlightjs-9.12.0/default.css" rel="stylesheet" />
<script src="site_libs/highlightjs-9.12.0/highlight.js"></script>
<link href="site_libs/font-awesome-6.5.2/css/all.min.css" rel="stylesheet" />
<link href="site_libs/font-awesome-6.5.2/css/v4-shims.min.css" rel="stylesheet" />
<link href="site_libs/ionicons-2.0.1/css/ionicons.min.css" rel="stylesheet" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-113315486-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-113315486-1');
</script>
<style type="text/css">
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
</style>
<style type="text/css">code{white-space: pre;}</style>
<script type="text/javascript">
if (window.hljs) {
hljs.configure({languages: []});
hljs.initHighlightingOnLoad();
if (document.readyState && document.readyState === "complete") {
window.setTimeout(function() { hljs.initHighlighting(); }, 0);
}
}
</script>
<link rel="stylesheet" href="styles.css" type="text/css" />
<style type = "text/css">
.main-container {
max-width: 940px;
margin-left: auto;
margin-right: auto;
}
img {
max-width:100%;
}
.tabbed-pane {
padding-top: 12px;
}
.html-widget {
margin-bottom: 20px;
}
button.code-folding-btn:focus {
outline: none;
}
summary {
display: list-item;
}
details > summary > p:only-child {
display: inline;
}
pre code {
padding: 0;
}
</style>
<style type="text/css">
.dropdown-submenu {
position: relative;
}
.dropdown-submenu>.dropdown-menu {
top: 0;
left: 100%;
margin-top: -6px;
margin-left: -1px;
border-radius: 0 6px 6px 6px;
}
.dropdown-submenu:hover>.dropdown-menu {
display: block;
}
.dropdown-submenu>a:after {
display: block;
content: " ";
float: right;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
border-width: 5px 0 5px 5px;
border-left-color: #cccccc;
margin-top: 5px;
margin-right: -10px;
}
.dropdown-submenu:hover>a:after {
border-left-color: #adb5bd;
}
.dropdown-submenu.pull-left {
float: none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
left: -100%;
margin-left: 10px;
border-radius: 6px 0 6px 6px;
}
</style>
<script type="text/javascript">
// manage active state of menu based on current page
$(document).ready(function () {
// active menu anchor
href = window.location.pathname
href = href.substr(href.lastIndexOf('/') + 1)
if (href === "")
href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
// mark the anchor link active (and if it's in a dropdown, also mark that active)
var dropdown = menuAnchor.closest('li.dropdown');
if (window.bootstrap) { // Bootstrap 4+
menuAnchor.addClass('active');
dropdown.find('> .dropdown-toggle').addClass('active');
} else { // Bootstrap 3
menuAnchor.parent().addClass('active');
dropdown.addClass('active');
}
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
var style = document.createElement('style');
var pt = "padding-top: " + navHeight + "px; ";
var mt = "margin-top: -" + navHeight + "px; ";
var css = "";
// offset scroll position for anchor links (for fixed navbar)
for (var i = 1; i <= 6; i++) {
css += ".section h" + i + "{ " + pt + mt + "}\n";
}
style.innerHTML = "body {" + pt + "padding-bottom: 40px; }\n" + css;
document.head.appendChild(style);
});
</script>
<!-- tabsets -->
<style type="text/css">
.tabset-dropdown > .nav-tabs {
display: inline-table;
max-height: 500px;
min-height: 44px;
overflow-y: auto;
border: 1px solid #ddd;
border-radius: 4px;
}
.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
content: "\e259";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
border-right: 1px solid #ddd;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
content: "\e258";
font-family: 'Glyphicons Halflings';
border: none;
}
.tabset-dropdown > .nav-tabs > li.active {
display: block;
}
.tabset-dropdown > .nav-tabs > li > a,
.tabset-dropdown > .nav-tabs > li > a:focus,
.tabset-dropdown > .nav-tabs > li > a:hover {
border: none;
display: inline-block;
border-radius: 4px;
background-color: transparent;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li {
display: block;
float: none;
}
.tabset-dropdown > .nav-tabs > li {
display: none;
}
</style>
<!-- code folding -->
</head>
<body>
<div class="container-fluid main-container">
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-bs-toggle="collapse" data-target="#navbar" data-bs-target="#navbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Semillero</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>
<a href="informacion.html">
<span class="fa fa-info-circle"></span>
Información
</a>
</li>
<li>
<a href="https://freddy.quarto.pub/dists-gamlss">
<span class="fa fa-cubes"></span>
gamlss
</a>
</li>
<li>
<a href="karel.html">
<span class="fa fa-android"></span>
Karel
</a>
</li>
<li>
<a href="club_lec.html">
<span class="fa fa-newspaper-o"></span>
Club de lectura
</a>
</li>
<li>
<a href="curso_intro_r.html">
<span class="fa fa-pencil"></span>
Curso de R
</a>
</li>
<li>
<a href="curso_intro_python.html">
<span class="fa fa-pencil"></span>
Curso de Python
</a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
#rstats
<span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="material.html">
<span class="fa fa-archive"></span>
Material
</a>
</li>
<li>
<a href="https://ciencias.medellin.unal.edu.co/escuelas/estadistica/index.php/shiny.html">
<span class="fa fa-hand-spock-o"></span>
Shiny apps
</a>
</li>
<li>
<a href="enlaces.html">
<span class="fa fa-link"></span>
Enlaces intersantes
</a>
</li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="http://ciencias.medellin.unal.edu.co/escuelas/estadistica/">
<span class="ion ion-university"></span>
</a>
</li>
<li>
<a href="https://ciencias.medellin.unal.edu.co/escuelas/estadistica/index.php/shiny.html">
<span class="fa fa-lightbulb-o"></span>
</a>
</li>
<li>
<a href="https://github.com/srunal">
<span class="fa fa-github"></span>
</a>
</li>
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container -->
</div><!--/.navbar -->
<div id="header">
<h1 class="title toc-ignore">Curso de introducción a Python</h1>
</div>
<center>
<img src="imagenes/girl_prog.jpg" alt="Freepik image" width="550" height="350">
</center>
<p><br> <br></p>
<div id="tema-0" class="section level2">
<h2>Tema 0</h2>
<p>Los retos de esta tema son:</p>
<ul>
<li>Ver <a href="https://youtu.be/Z4AOP7-b1RM?si=wzGzrnB65Z4B1u82">este
video</a> con una introducción a Python.</li>
<li>Crear una cuenta en GitHub, puede ver <a
href="https://www.youtube.com/watch?v=ZyD8wyP7J9g">este video</a> de
cómo hacerlo.</li>
<li>Curiosear las cuentas de GitHub de los usuarios <a
href="https://committers.top/colombia.html">colombianos más
activos</a>.</li>
</ul>
</div>
<div id="tema-1" class="section level2">
<h2>Tema 1</h2>
<p>En esta tema vamos a tratar los temas de tipos de datos y operadores.
El material que vamos a usar es:</p>
<ul>
<li><a
href="https://github.com/fhernanb/Python-para-estadistica/blob/master/01%20Lecciones%20b%C3%A1sicas/01%20Datos%20y%20operaciones%20b%C3%A1sicas.ipynb">Notebook
sobre funciones, datos y operaciones básicas</a>.</li>
<li><a href="https://youtu.be/PMOWXusLr9g?si=47O53QCtmtS5XP-h">Video
sobre operadores arítmeticos</a></li>
<li><a href="https://youtu.be/mIAPti7iUKk?si=D0Ce5Ossl9LpUPZQ">Video
sobre operadores relacionales</a></li>
<li><a href="https://youtu.be/ZjeOT_ACdhw?si=bNKwu-3tYlYpAoEL">Video
sobre operadores lógicos</a></li>
<li><a href="https://youtu.be/LYNULtY1Zj8?si=9YneDri-2kOJCK1Z">Video
sobre operadores de asignación</a></li>
<li><a href="https://youtu.be/V7rsdYD-x4M?si=KreQ7eBzoB_E9pj2">Video
sobre salida de datos</a></li>
<li><a href="https://youtu.be/WXHiItkIjHU?si=K9TiIcUQ14FF1jkS">Video
sobre entrada de datos</a></li>
<li><a href="https://youtu.be/_qLPAwe8xb4?si=IP4EkC42RnOOlVg1">Video
sobre funciones integradas</a></li>
</ul>
<p>Los retos de esta tema son:</p>
<ul>
<li>Actualizar el perfil de su GitHub usando <a
href="https://github-profile-maker.vercel.app/">este servicio</a>.</li>
<li>Replicar los ejemplos mostrados en el notebook.</li>
<li>Realizar los ejercicios propuestos en el notebook.</li>
<li>Estudiar los videos <a
href="https://www.youtube.com/playlist?list=PLZOGNlgi8GGmlwUznNnnQJpyEJcABeTs4&si=8is_9R0cZ_-YuHGV">esta
lista de reproducción</a>.</li>
<li>Ver la primera parte de los siguientes videos y crear el programa
para solucionar el ejercicio. Luego de que usted tenga su programa,
continue viendo el video para que compare su programa con el programa
del video:
<ul>
<li><a href="https://youtu.be/r4ZLB064stU?si=gHjOO7KcVBS0mncb">Ejercicio
1</a></li>
<li><a href="https://youtu.be/HXkPrXHm0so?si=I6AroDsp-V1CH6yl">Ejercicio
2</a></li>
<li><a href="https://youtu.be/8JYjIp_sxPQ?si=MoIi_Ex5nAhwSzCN">Ejercicio
3</a></li>
<li><a href="https://youtu.be/xCqX_BnjSNc?si=NJLX62jvSjiLCNBw">Ejercicio
4</a></li>
<li><a href="https://youtu.be/TI_Fd3GyReM?si=dnxffZU5hfWPGN8j">Ejercicio
5</a>.</li>
</ul></li>
</ul>
</div>
<div id="tema-2" class="section level2">
<h2>Tema 2</h2>
<p>En esta tema vamos a tratar los temas de programas básicos y
estructuras condicionales. El material que vamos a usar es:</p>
<ul>
<li><a
href="https://github.com/fhernanb/Python-para-estadistica/blob/master/01%20Lecciones%20b%C3%A1sicas/03%20Ejercicios%20b%C3%A1sicos.ipynb">Notebook
sobre programas básicos</a>.</li>
<li><a href="https://youtu.be/-kFBwApYVtA?si=V_KEr6lrYJqCaoK4">Video
sobre condicionales</a></li>
<li><a href="https://youtu.be/NmVysQPlS2k?si=sKjd1o8PR4Aqnz-W">Video
sobre condicionales combinados</a>.</li>
</ul>
<p>Los retos de esta tema son:</p>
<ul>
<li>Realizar los ejercicios propuestos en el notebook.</li>
<li>Ver la primera parte de los siguientes videos y crear el programa
para solucionar el ejercicio. Luego de que usted tenga su programa,
continue viendo el video para que compare su programa con el programa
del video:
<ul>
<li><a href="https://youtu.be/fz_-sc_bwDA?si=LaTGVqSxZajNksSd">Ejercicio
1</a></li>
<li><a href="https://youtu.be/u21erAE2oKI?si=q4sERBxcIOBFo_AU">Ejercicio
2</a></li>
<li><a href="https://youtu.be/eZGWlBrkhW8?si=knh34bhDa6qZLqxu">Ejercicio
3</a></li>
<li><a href="https://youtu.be/2ushSGaPX3I?si=u7ImP9y8g8xEHbJj">Ejercicio
4</a></li>
<li><a href="https://youtu.be/kAdgwY_mVxM?si=jbbtCsjl0NCD5gco">Ejercicio
5</a>.</li>
</ul></li>
</ul>
</div>
<div id="tema-3" class="section level2">
<h2>Tema 3</h2>
<p>En esta tema vamos a tratar el tema de colecciones. El material que
vamos a usar es:</p>
<ul>
<li><a href="https://youtu.be/xdCJa2QXmJ8?si=X30nEJFCvuNARwxf">Video
sobre listas</a>.</li>
<li><a href="https://youtu.be/aF1tiL5A-iU?si=egKwkEaF1iXDfcDI">Video
sobre listas parte 2</a>.</li>
<li><a href="https://youtu.be/PjCBukZttG4?si=9XGW7VoneNWkRFYt">Video
sobre tuplas</a>.</li>
<li><a href="https://youtu.be/rmRrvol4XcM?si=GXW5CLZaiQAn01rk">Video
sobre conjuntos</a>.</li>
<li><a href="https://youtu.be/UKD3CMINxik?si=uZmRFTz3fXpv_GML">Video
sobre conjuntos parte 2</a>.</li>
<li><a href="https://youtu.be/vAy4IM7NLIQ?si=pdi45eTzXZjgF_N0">Video
sobre diccionarios</a>.</li>
<li><a href="https://youtu.be/hjNWsqLAPv4?si=wzZyS3cvYtbS1eAF">Video
sobre diccionarios parte 2</a>.</li>
<li><a href="https://youtu.be/cXXO0qQGSPA?si=scyKBlAr5Uo3BjBK">Video
sobre pilas</a>.</li>
<li><a href="https://youtu.be/wuGYzEcgTTw?si=cJwJFoKrq-IW3u-z">Video
sobre colas</a>.</li>
</ul>
<p>Los retos de esta tema son:</p>
<ul>
<li>Realizar los ejercicios propuestos en el notebook.</li>
<li>Ver la primera parte de los siguientes videos y crear el programa
para solucionar el ejercicio. Luego de que usted tenga su programa,
continue viendo el video para que compare su programa con el programa
del video:
<ul>
<li><a href="https://youtu.be/Nl_CxwKaZJk?si=qBP1MNL-UcgXpedO">Ejercicio
1</a></li>
<li><a href="https://youtu.be/N2i9uBRyJgk?si=xS-autoDAKCOm1cI">Ejercicio
2</a></li>
<li><a href="https://youtu.be/gonL3kow0Oc?si=BEnGYZAbPPw3D8Zo">Ejercicio
3</a></li>
</ul></li>
</ul>
</div>
<div id="tema-4" class="section level2">
<h2>Tema 4</h2>
<p>En esta tema vamos a tratar el tema de loops. El material que vamos a
usar es:</p>
<ul>
<li><a
href="https://github.com/fhernanb/Python-para-estadistica/blob/master/01%20Lecciones%20b%C3%A1sicas/05%20Loops.ipynb">Notebook
sobre loops</a>.</li>
<li><a href="https://youtu.be/wOHR4FzzMB4?si=EyimsgLe-JbIUZON">Video
sobre range</a>.</li>
<li><a href="https://youtu.be/YEWxlbffgxE?si=p3o1jr4SAHzLxawJ">Video
sobre while</a>.</li>
<li><a href="https://youtu.be/mRI8C2ZhDkg?si=IrIxL0d4K8DLmdST">Video
sobre for</a>.</li>
</ul>
<p>Los retos de esta tema son:</p>
<ul>
<li>Realizar los ejercicios propuestos en el notebook.</li>
<li>Ver la primera parte de los siguientes videos y crear el programa
para solucionar el ejercicio. Luego de que usted tenga su programa,
continue viendo el video para que compare su programa con el programa
del video:
<ul>
<li><a
href="https://youtu.be/L51HqhsvG68?si=s8euKzPd0bgPuLMR&t=116">Ejercicio
1</a></li>
<li><a
href="https://youtu.be/DvrPwKMVFWo?si=KK5-roHwe345Ur0Y&t=8">Ejercicio
2</a></li>
<li><a
href="https://youtu.be/2xpDkdqsyRc?si=fsYcb5fSci-cbf-V&t=48">Ejercicio
3</a></li>
</ul></li>
</ul>
</div>
<div id="tema-5" class="section level2">
<h2>Tema 5</h2>
<p>En esta tema vamos a tratar el tema de excepciones. El material que
vamos a usar es:</p>
<ul>
<li><a href="https://youtu.be/_lao-swaPdc?si=wgSB1p_j3AoOIfWP">Video
sobre excepciones</a>.</li>
<li><a href="https://youtu.be/qZFK90XvyTg?si=ug9dDY7Xb3_hUAaP">Video
sobre try, except, else y finally</a>.</li>
<li><a href="https://youtu.be/sf1ysCJq_SQ?si=7R_lZilkgb4YL8vE">Video
sobre mientras haya excepciones</a>.</li>
<li><a href="https://youtu.be/hQ8Nh0bwG7w?si=ngC88_LHLd8cPqWD">Video
sobre más de una excepción</a>.</li>
<li><a href="https://youtu.be/hQ8Nh0bwG7w?si=ngC88_LHLd8cPqWD">Video
sobre manejo de errores - la cartilla</a>.</li>
</ul>
<p>Los retos de esta tema son:</p>
<ul>
<li>Realizar los ejercicios propuestos en el notebook.</li>
<li>Ver la primera parte de los siguientes videos y crear el programa
para solucionar el ejercicio. Luego de que usted tenga su programa,
continue viendo el video para que compare su programa con el programa
del video:
<ul>
<li><a
href="https://youtu.be/cdqTTDl_kS8?si=T7ukJy1j21BuLuww&t=89">Ejercicio
1</a></li>
<li><a
href="https://youtu.be/cdqTTDl_kS8?si=kx_LDKIYgFfzN85g&t=288">Ejercicio
2</a></li>
</ul></li>
</ul>
</div>
<div id="tema-6" class="section level2">
<h2>Tema 6</h2>
<p>En esta tema vamos a tratar el tema de creación de funciones. El
material que vamos a usar es:</p>
<ul>
<li><a
href="https://github.com/fhernanb/Python-para-estadistica/blob/master/01%20Lecciones%20b%C3%A1sicas/06%20Ejercicios%20sobre%20funciones.ipynb">Notebook
sobre funciones</a>.</li>
<li><a
href="https://youtu.be/hHhkLEnowLA?si=9-VTfsTrziKTyop-&t=20">Video
sobre funciones integradas</a>.</li>
<li><a href="https://youtu.be/g1BiLG9DyvM?si=e1_KCpfhVZOD_oJw">Video
sobre qué es una función</a>.</li>
<li><a href="https://youtu.be/2Z5_qNlmAJk?si=uO8NmO5hIZPKSzll">Video
sobre creación de funciones</a>.</li>
<li><a href="https://youtu.be/7xTHov614ZA?si=u2lAARa-UuKD-l0L">Video
sobre parámetros y argumentos</a>.</li>
<li><a href="https://youtu.be/nEKqmheMAZ8?si=4rXXUiLjtrVJQK-h">Video
sobre funciones con valores de retorno</a>.</li>
<li><a href="https://youtu.be/AdhONq0SyGw?si=uHUCZHbDcXiDet3H">Video
sobre funciones lambda</a>.</li>
</ul>
<p>Los retos de esta tema son:</p>
<ul>
<li>Realizar los ejercicios propuestos en el notebook.</li>
<li>Ver la primera parte de los siguientes videos y crear el programa
para solucionar el ejercicio. Luego de que usted tenga su programa,
continue viendo el video para que compare su programa con el programa
del video:
<ul>
<li><a
href="https://youtube.com/shorts/5-vGyUOfC5E?si=76WIQVy7I8dMqCzs">Ejercicio
1</a></li>
<li><a
href="https://youtube.com/shorts/hm4o20k0Mi4?si=kZh108GX9v-Lg55W">Ejercicio
2</a></li>
<li><a
href="https://youtube.com/shorts/bkxYx2hdCTk?si=20G5oGQN9ua0FRwK">Ejercicio
3</a></li>
<li><a
href="https://youtube.com/shorts/kCoetL_kEeo?si=LGxDF-IZQlHkkF21">Ejercicio
4</a></li>
<li><a
href="https://youtube.com/shorts/fKt4B5dl6bI?si=Tp_GlCsjshfVEL_8">Ejercicio
5</a></li>
</ul></li>
</ul>
</div>
<div id="tema-7" class="section level2">
<h2>Tema 7</h2>
<p>En esta tema vamos a tratar el tema de librerías. El material que
vamos a usar es:</p>
<ul>
<li><a href="https://youtu.be/lkQ2cfAX2Ao?si=MtXmtW1t7QHsPucR">Video
sobre cómo instalar librerías</a>.</li>
<li><a href="https://youtu.be/TZQpj5hu8Yc?si=m0NEmKgu76MHfbjW">Video 11
Librerías de Python para 2024 que debes conocer</a>.</li>
<li><a
href="https://youtube.com/shorts/BFNkLG8io2c?si=Xhckz7x4GswKMZvB">Short
librerías para machine learning</a>.</li>
</ul>
</div>
<div id="tema-8" class="section level2">
<h2>Tema 8</h2>
<p>En esta tema vamos a tratar el tema de gráficos. El material que
vamos a usar es:</p>
<ul>
<li><a
href="https://youtube.com/playlist?list=PLG8UtYUFOQj4PwdP1SusjENu-fPOh7bnZ&si=ZnsZu7BvGrNnrEUi">Lista
creación de gráficos</a>.</li>
<li><a href="https://youtu.be/XEG4eh5l_qU?si=ONnd41oRJme2iwzP">Video
sobre cómo matplotlib</a>.</li>
<li><a href="https://youtu.be/AqHRieHKEzw?si=BsPHjfSR5GqCK3Ye">9 tipos
de gráficos que debes conocer</a>.</li>
<li><a href="https://youtu.be/Zt3tzGjLmPA?si=0t-i2IIKOsPKBNk3">Video
sobre gráficos interactivos</a>.</li>
</ul>
<p><br> <br></p>
</div>
<div id="otros-recursos-interesantes" class="section level2">
<h2>Otros recursos interesantes</h2>
<p>A continuación un listado de recursos interesantes sobre Python.</p>
<ul>
<li><a
href="https://youtube.com/playlist?list=PLZOGNlgi8GGmlwUznNnnQJpyEJcABeTs4&si=XOSMckkR2e0s8jTi">Videos
de Jorge Escobar</a>.</li>
<li><a
href="https://youtube.com/playlist?list=PLE549A038CF82905F&si=08r_4O9TOVnqZbs6">Videos
de Código Facilito</a>.</li>
<li><a
href="https://www.youtube.com/playlist?list=PL7VQ-RADvZ4OhJPt8wV7Z-gi6RLx-G1c3">Videos
de Arnau</a>.</li>
</ul>
<p><br> <br></p>
<center>
<img src="imagenes/Semillero_2025_01.png" alt="Foto semilleristas">
</center>
<p><br> <br></p>
<center>
<img src="imagenes/logo_python.gif" alt="Logo animado" width="70" height="70">
</center>
</div>
<br>
<hr>
<p><center>
<img src="imagenes/Logo_Semillero_R.png" alt="logo_srunal" width="100"
height="100">
</center></p>
<p><center>Copyright © 2026, webpage made with Rmarkdown.</center></p>
<hr>
</div>
<script>
// add bootstrap table styles to pandoc tables
function bootstrapStylePandocTables() {
$('tr.odd').parent('tbody').parent('table').addClass('table table-condensed');
}
$(document).ready(function () {
bootstrapStylePandocTables();
});
</script>
<!-- tabsets -->
<script>
$(document).ready(function () {
window.buildTabsets("TOC");
});
$(document).ready(function () {
$('.tabset-dropdown > .nav-tabs > li').click(function () {
$(this).parent().toggleClass('nav-tabs-open');
});
});
</script>
<!-- code folding -->
<!-- dynamically load mathjax for compatibility with self-contained -->
<script>
(function () {
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML";
document.getElementsByTagName("head")[0].appendChild(script);
})();
</script>
</body>
</html>