diff --git a/367/APIWrapper.js b/367/APIWrapper.js new file mode 100644 index 000000000..4f1753ddb --- /dev/null +++ b/367/APIWrapper.js @@ -0,0 +1,45 @@ +// SCORM API Wrapper +var findAPITries = 0; +var API = null; + +function findAPI(win) { + while ((win.API == null) && (win.parent != null) && (win.parent != win)) { + findAPITries++; + if (findAPITries > 7) { + return null; + } + win = win.parent; + } + return win.API; +} + +function getAPI() { + var theAPI = findAPI(window); + if ((theAPI == null) && (window.opener != null) && (typeof(window.opener) != "undefined")) { + theAPI = findAPI(window.opener); + } + if (theAPI == null) { + alert("Unable to find an API adapter"); + } + return theAPI; +} + +function initializeAPI() { + API = getAPI(); + if (API != null) { + API.LMSInitialize(""); + } +} + +function terminateAPI() { + if (API != null) { + API.LMSFinish(""); + } +} + +function setProgress(progress) { + if (API != null) { + API.LMSSetValue("cmi.core.lesson_status", progress); + API.LMSCommit(""); + } +} diff --git a/367/SCORMFunctions.js b/367/SCORMFunctions.js new file mode 100644 index 000000000..e94380937 --- /dev/null +++ b/367/SCORMFunctions.js @@ -0,0 +1,40 @@ +// SCORM Functions +function loadPage() { + initializeAPI(); + console.log("SCORM API initialized."); +} + +function unloadPage() { + terminateAPI(); + console.log("SCORM API terminated."); +} + +function loadChapter(chapter) { + loadPage(); + + var completionStatus = API.LMSGetValue("cmi.core.lesson_status"); + + if (completionStatus === "completed") { + document.getElementById("completion-status").innerText = "This chapter has been completed."; + document.getElementById("complete-button").style.display = "none"; + } else { + document.getElementById("completion-status").innerText = "This chapter has not been completed."; + document.getElementById("reset-button").style.display = "none"; + } +} + +function completeChapter(chapter) { + setProgress("completed"); + alert(chapter + " completed! Progress recorded."); + document.getElementById("completion-status").innerText = "This chapter has been completed."; + document.getElementById("complete-button").style.display = "none"; + document.getElementById("reset-button").style.display = "block"; +} + +function resetChapter(chapter) { + setProgress("incomplete"); + alert(chapter + " reset to incomplete."); + document.getElementById("completion-status").innerText = "This chapter has not been completed."; + document.getElementById("complete-button").style.display = "block"; + document.getElementById("reset-button").style.display = "none"; +} diff --git a/367/_sources/lectures/TWP52_en.rst.txt b/367/_sources/lectures/TWP52_en.rst.txt index b64d5a3fb..b2c46915e 100644 --- a/367/_sources/lectures/TWP52_en.rst.txt +++ b/367/_sources/lectures/TWP52_en.rst.txt @@ -306,7 +306,7 @@ Review .. raw:: html - :file: ../../scorm_package/index.html + :file: ../../scorm_package/chapter1.html .. disqus:: :shortname: pyzombis diff --git a/367/_static/APIWrapper.js b/367/_static/APIWrapper.js new file mode 100644 index 000000000..4f1753ddb --- /dev/null +++ b/367/_static/APIWrapper.js @@ -0,0 +1,45 @@ +// SCORM API Wrapper +var findAPITries = 0; +var API = null; + +function findAPI(win) { + while ((win.API == null) && (win.parent != null) && (win.parent != win)) { + findAPITries++; + if (findAPITries > 7) { + return null; + } + win = win.parent; + } + return win.API; +} + +function getAPI() { + var theAPI = findAPI(window); + if ((theAPI == null) && (window.opener != null) && (typeof(window.opener) != "undefined")) { + theAPI = findAPI(window.opener); + } + if (theAPI == null) { + alert("Unable to find an API adapter"); + } + return theAPI; +} + +function initializeAPI() { + API = getAPI(); + if (API != null) { + API.LMSInitialize(""); + } +} + +function terminateAPI() { + if (API != null) { + API.LMSFinish(""); + } +} + +function setProgress(progress) { + if (API != null) { + API.LMSSetValue("cmi.core.lesson_status", progress); + API.LMSCommit(""); + } +} diff --git a/367/_static/SCORMFunctions.js b/367/_static/SCORMFunctions.js new file mode 100644 index 000000000..e94380937 --- /dev/null +++ b/367/_static/SCORMFunctions.js @@ -0,0 +1,40 @@ +// SCORM Functions +function loadPage() { + initializeAPI(); + console.log("SCORM API initialized."); +} + +function unloadPage() { + terminateAPI(); + console.log("SCORM API terminated."); +} + +function loadChapter(chapter) { + loadPage(); + + var completionStatus = API.LMSGetValue("cmi.core.lesson_status"); + + if (completionStatus === "completed") { + document.getElementById("completion-status").innerText = "This chapter has been completed."; + document.getElementById("complete-button").style.display = "none"; + } else { + document.getElementById("completion-status").innerText = "This chapter has not been completed."; + document.getElementById("reset-button").style.display = "none"; + } +} + +function completeChapter(chapter) { + setProgress("completed"); + alert(chapter + " completed! Progress recorded."); + document.getElementById("completion-status").innerText = "This chapter has been completed."; + document.getElementById("complete-button").style.display = "none"; + document.getElementById("reset-button").style.display = "block"; +} + +function resetChapter(chapter) { + setProgress("incomplete"); + alert(chapter + " reset to incomplete."); + document.getElementById("completion-status").innerText = "This chapter has not been completed."; + document.getElementById("complete-button").style.display = "block"; + document.getElementById("reset-button").style.display = "none"; +} diff --git a/367/_static/documentation_options.js b/367/_static/documentation_options.js index 157cbba45..0cb5c1366 100644 --- a/367/_static/documentation_options.js +++ b/367/_static/documentation_options.js @@ -1,6 +1,6 @@ var DOCUMENTATION_OPTIONS = { URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '979652b028afa0d18fcb457e2f489071bff9a9c1-Scorm', + VERSION: '73f24da05aeb65e9fbd77249a1ae4e00c8fd8e11-Scorm', LANGUAGE: 'None', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/367/challenges/Reto01.html b/367/challenges/Reto01.html index 9b35cf734..bea90f2d5 100644 --- a/367/challenges/Reto01.html +++ b/367/challenges/Reto01.html @@ -4,14 +4,14 @@ - Reto Ahorcado — PyZombis Scorm@979652b + Reto Ahorcado — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/challenges/Reto01_en.html b/367/challenges/Reto01_en.html index 0cb108fea..8570165cb 100644 --- a/367/challenges/Reto01_en.html +++ b/367/challenges/Reto01_en.html @@ -4,14 +4,14 @@ - Hangman Challenge — PyZombis Scorm@979652b + Hangman Challenge — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/challenges/Reto02.html b/367/challenges/Reto02.html index e22ff4299..3262d075c 100644 --- a/367/challenges/Reto02.html +++ b/367/challenges/Reto02.html @@ -4,14 +4,14 @@ - Reto Pergamino — PyZombis Scorm@979652b + Reto Pergamino — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -93,7 +93,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/challenges/Reto03.html b/367/challenges/Reto03.html index 0a430129c..8f011f9cc 100644 --- a/367/challenges/Reto03.html +++ b/367/challenges/Reto03.html @@ -4,14 +4,14 @@ - Reto Pygame -Tirador de zombies — PyZombis Scorm@979652b + Reto Pygame -Tirador de zombies — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/challenges/Reto03_en.html b/367/challenges/Reto03_en.html index 64046a267..766bbd9c9 100644 --- a/367/challenges/Reto03_en.html +++ b/367/challenges/Reto03_en.html @@ -4,14 +4,14 @@ - Pygame Challenge - Zombie Shooter — PyZombis Scorm@979652b + Pygame Challenge - Zombie Shooter — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/challenges/Reto04.html b/367/challenges/Reto04.html index b42acf979..65f4a1780 100644 --- a/367/challenges/Reto04.html +++ b/367/challenges/Reto04.html @@ -4,14 +4,14 @@ - Ejercicio de nombres de bebés de Google — PyZombis Scorm@979652b + Ejercicio de nombres de bebés de Google — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/challenges/Reto04_en.html b/367/challenges/Reto04_en.html index 6f3cedc76..5bde417ed 100644 --- a/367/challenges/Reto04_en.html +++ b/367/challenges/Reto04_en.html @@ -4,14 +4,14 @@ - Google babynames exercise — PyZombis Scorm@979652b + Google babynames exercise — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/challenges/Reto05.html b/367/challenges/Reto05.html index 6c6a41672..b1376a16b 100644 --- a/367/challenges/Reto05.html +++ b/367/challenges/Reto05.html @@ -4,14 +4,14 @@ - Reto PyMaze — PyZombis Scorm@979652b + Reto PyMaze — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/challenges/Reto05_en.html b/367/challenges/Reto05_en.html index 769951619..f5276fd25 100644 --- a/367/challenges/Reto05_en.html +++ b/367/challenges/Reto05_en.html @@ -4,14 +4,14 @@ - PyMaze — PyZombis Scorm@979652b + PyMaze — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -91,7 +91,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/challenges/_static/baby1990.html.html b/367/challenges/_static/baby1990.html.html index 9117c643c..a811dfeb5 100644 --- a/367/challenges/_static/baby1990.html.html +++ b/367/challenges/_static/baby1990.html.html @@ -4,14 +4,14 @@ - <no title> — PyZombis Scorm@979652b + <no title> — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -90,7 +90,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/challenges/_static/baby1996.html.html b/367/challenges/_static/baby1996.html.html index f92446184..8ce4d4ec8 100644 --- a/367/challenges/_static/baby1996.html.html +++ b/367/challenges/_static/baby1996.html.html @@ -4,14 +4,14 @@ - <no title> — PyZombis Scorm@979652b + <no title> — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -90,7 +90,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/challenges/_static/baby2002.html.html b/367/challenges/_static/baby2002.html.html index 1e59cbb00..81876b794 100644 --- a/367/challenges/_static/baby2002.html.html +++ b/367/challenges/_static/baby2002.html.html @@ -4,14 +4,14 @@ - <no title> — PyZombis Scorm@979652b + <no title> — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -90,7 +90,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/doctrees/environment.pickle b/367/doctrees/environment.pickle index 2418470cb..2ad29fb69 100644 Binary files a/367/doctrees/environment.pickle and b/367/doctrees/environment.pickle differ diff --git a/367/doctrees/lectures/TWP38/TWP38_2.doctree b/367/doctrees/lectures/TWP38/TWP38_2.doctree index 32ff1a9ef..c7b6d55ba 100644 Binary files a/367/doctrees/lectures/TWP38/TWP38_2.doctree and b/367/doctrees/lectures/TWP38/TWP38_2.doctree differ diff --git a/367/doctrees/lectures/TWP38/TWP38_2_en.doctree b/367/doctrees/lectures/TWP38/TWP38_2_en.doctree index b38047186..608ca9d3f 100644 Binary files a/367/doctrees/lectures/TWP38/TWP38_2_en.doctree and b/367/doctrees/lectures/TWP38/TWP38_2_en.doctree differ diff --git a/367/doctrees/lectures/TWP52_en.doctree b/367/doctrees/lectures/TWP52_en.doctree index 8e2ecec1e..fb4b5a2db 100644 Binary files a/367/doctrees/lectures/TWP52_en.doctree and b/367/doctrees/lectures/TWP52_en.doctree differ diff --git a/367/genindex.html b/367/genindex.html index 42803abab..4a362d243 100644 --- a/367/genindex.html +++ b/367/genindex.html @@ -4,14 +4,14 @@ - Index — PyZombis Scorm@979652b + Index — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -90,7 +90,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/index.html b/367/index.html index f28e65e6b..7adc77990 100644 --- a/367/index.html +++ b/367/index.html @@ -4,14 +4,14 @@ - Bienvenido a PyZombis — PyZombis Scorm@979652b + Bienvenido a PyZombis — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -91,7 +91,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/index_en.html b/367/index_en.html index 638c5ed00..ad8c8456b 100644 --- a/367/index_en.html +++ b/367/index_en.html @@ -4,14 +4,14 @@ - Welcome to PyZombis — PyZombis Scorm@979652b + Welcome to PyZombis — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/index_es.html b/367/index_es.html index 01f878eb1..4a4f6644b 100644 --- a/367/index_es.html +++ b/367/index_es.html @@ -4,14 +4,14 @@ - Bienvenido a PyZombis — PyZombis Scorm@979652b + Bienvenido a PyZombis — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_1.html b/367/lectures/TWP05/TWP05_1.html index 2a4ae6953..c1118753b 100644 --- a/367/lectures/TWP05/TWP05_1.html +++ b/367/lectures/TWP05/TWP05_1.html @@ -4,14 +4,14 @@ - 1. Primer programa — PyZombis Scorm@979652b + 1. Primer programa — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_10.html b/367/lectures/TWP05/TWP05_10.html index bdf14894a..eb493268b 100644 --- a/367/lectures/TWP05/TWP05_10.html +++ b/367/lectures/TWP05/TWP05_10.html @@ -4,14 +4,14 @@ - 10. Expresiones lógicas — PyZombis Scorm@979652b + 10. Expresiones lógicas — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_10_en.html b/367/lectures/TWP05/TWP05_10_en.html index 745515d5e..e762e66a0 100644 --- a/367/lectures/TWP05/TWP05_10_en.html +++ b/367/lectures/TWP05/TWP05_10_en.html @@ -4,14 +4,14 @@ - 10. Logical expressions — PyZombis Scorm@979652b + 10. Logical expressions — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_11.html b/367/lectures/TWP05/TWP05_11.html index 5e36ead42..7dbf0ef69 100644 --- a/367/lectures/TWP05/TWP05_11.html +++ b/367/lectures/TWP05/TWP05_11.html @@ -4,14 +4,14 @@ - 11. Variable String — PyZombis Scorm@979652b + 11. Variable String — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_11_en.html b/367/lectures/TWP05/TWP05_11_en.html index f005f5036..a76139a79 100644 --- a/367/lectures/TWP05/TWP05_11_en.html +++ b/367/lectures/TWP05/TWP05_11_en.html @@ -4,14 +4,14 @@ - 11. String Variable — PyZombis Scorm@979652b + 11. String Variable — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_12.html b/367/lectures/TWP05/TWP05_12.html index d121cd22c..98c2b070e 100644 --- a/367/lectures/TWP05/TWP05_12.html +++ b/367/lectures/TWP05/TWP05_12.html @@ -4,14 +4,14 @@ - 12. Operaciones con strings — PyZombis Scorm@979652b + 12. Operaciones con strings — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_12_en.html b/367/lectures/TWP05/TWP05_12_en.html index 07a449e29..fe930db27 100644 --- a/367/lectures/TWP05/TWP05_12_en.html +++ b/367/lectures/TWP05/TWP05_12_en.html @@ -4,14 +4,14 @@ - 12. String Operations — PyZombis Scorm@979652b + 12. String Operations — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_13.html b/367/lectures/TWP05/TWP05_13.html index 6ded292b8..2398d1f18 100644 --- a/367/lectures/TWP05/TWP05_13.html +++ b/367/lectures/TWP05/TWP05_13.html @@ -4,14 +4,14 @@ - 13. Cambiar variables a lo largo del tiempo — PyZombis Scorm@979652b + 13. Cambiar variables a lo largo del tiempo — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_13_en.html b/367/lectures/TWP05/TWP05_13_en.html index 4ebb2143b..847d954e3 100644 --- a/367/lectures/TWP05/TWP05_13_en.html +++ b/367/lectures/TWP05/TWP05_13_en.html @@ -4,14 +4,14 @@ - 13. Changing variables over time — PyZombis Scorm@979652b + 13. Changing variables over time — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_14.html b/367/lectures/TWP05/TWP05_14.html index 1b4cbb045..e84beaae2 100644 --- a/367/lectures/TWP05/TWP05_14.html +++ b/367/lectures/TWP05/TWP05_14.html @@ -4,14 +4,14 @@ - 14. Prueba de escritorio o simulación — PyZombis Scorm@979652b + 14. Prueba de escritorio o simulación — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_14_en.html b/367/lectures/TWP05/TWP05_14_en.html index c34990268..f8ddef986 100644 --- a/367/lectures/TWP05/TWP05_14_en.html +++ b/367/lectures/TWP05/TWP05_14_en.html @@ -4,14 +4,14 @@ - 14. Desktop testing or simulation — PyZombis Scorm@979652b + 14. Desktop testing or simulation — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_15.html b/367/lectures/TWP05/TWP05_15.html index 35f69df1b..4a71acf86 100644 --- a/367/lectures/TWP05/TWP05_15.html +++ b/367/lectures/TWP05/TWP05_15.html @@ -4,14 +4,14 @@ - 15. Entrada de datos — PyZombis Scorm@979652b + 15. Entrada de datos — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_15_en.html b/367/lectures/TWP05/TWP05_15_en.html index d857e55e8..188928a55 100644 --- a/367/lectures/TWP05/TWP05_15_en.html +++ b/367/lectures/TWP05/TWP05_15_en.html @@ -4,14 +4,14 @@ - 15. Data Input — PyZombis Scorm@979652b + 15. Data Input — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_16.html b/367/lectures/TWP05/TWP05_16.html index 5feeecd3c..02e2ceb38 100644 --- a/367/lectures/TWP05/TWP05_16.html +++ b/367/lectures/TWP05/TWP05_16.html @@ -4,14 +4,14 @@ - 16. Lista de Ejercicios — PyZombis Scorm@979652b + 16. Lista de Ejercicios — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_16_en.html b/367/lectures/TWP05/TWP05_16_en.html index ac39a8dd2..241568556 100644 --- a/367/lectures/TWP05/TWP05_16_en.html +++ b/367/lectures/TWP05/TWP05_16_en.html @@ -4,14 +4,14 @@ - 16. Exercise List — PyZombis Scorm@979652b + 16. Exercise List — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_1_en.html b/367/lectures/TWP05/TWP05_1_en.html index 143b736af..22136cb40 100644 --- a/367/lectures/TWP05/TWP05_1_en.html +++ b/367/lectures/TWP05/TWP05_1_en.html @@ -4,14 +4,14 @@ - 1. First program — PyZombis Scorm@979652b + 1. First program — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_2.html b/367/lectures/TWP05/TWP05_2.html index b60c4f023..79bee690c 100644 --- a/367/lectures/TWP05/TWP05_2.html +++ b/367/lectures/TWP05/TWP05_2.html @@ -4,14 +4,14 @@ - 2. Primer mensaje de error — PyZombis Scorm@979652b + 2. Primer mensaje de error — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_2_en.html b/367/lectures/TWP05/TWP05_2_en.html index ed167b7d7..b933417c7 100644 --- a/367/lectures/TWP05/TWP05_2_en.html +++ b/367/lectures/TWP05/TWP05_2_en.html @@ -4,14 +4,14 @@ - 2. First error message — PyZombis Scorm@979652b + 2. First error message — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_3.html b/367/lectures/TWP05/TWP05_3.html index 9cc5b66bc..41c5804e6 100644 --- a/367/lectures/TWP05/TWP05_3.html +++ b/367/lectures/TWP05/TWP05_3.html @@ -4,14 +4,14 @@ - 3. Modo interactivo y modo edición — PyZombis Scorm@979652b + 3. Modo interactivo y modo edición — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_3_en.html b/367/lectures/TWP05/TWP05_3_en.html index 6a89abfe9..41abac121 100644 --- a/367/lectures/TWP05/TWP05_3_en.html +++ b/367/lectures/TWP05/TWP05_3_en.html @@ -4,14 +4,14 @@ - 3. Interactive Mode and Editing Mode — PyZombis Scorm@979652b + 3. Interactive Mode and Editing Mode — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_4.html b/367/lectures/TWP05/TWP05_4.html index e3adc32e0..db92556fa 100644 --- a/367/lectures/TWP05/TWP05_4.html +++ b/367/lectures/TWP05/TWP05_4.html @@ -4,14 +4,14 @@ - 4. Conceptos sobre variables y asignación — PyZombis Scorm@979652b + 4. Conceptos sobre variables y asignación — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_4_en.html b/367/lectures/TWP05/TWP05_4_en.html index 8e5b1dd6b..84667e9d0 100644 --- a/367/lectures/TWP05/TWP05_4_en.html +++ b/367/lectures/TWP05/TWP05_4_en.html @@ -4,14 +4,14 @@ - 4. Concepts about variables and assignment — PyZombis Scorm@979652b + 4. Concepts about variables and assignment — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_5.html b/367/lectures/TWP05/TWP05_5.html index 99175a8f7..4e5613338 100644 --- a/367/lectures/TWP05/TWP05_5.html +++ b/367/lectures/TWP05/TWP05_5.html @@ -4,14 +4,14 @@ - 5. Nombres de variables — PyZombis Scorm@979652b + 5. Nombres de variables — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_5_en.html b/367/lectures/TWP05/TWP05_5_en.html index ce56b5260..55afbca33 100644 --- a/367/lectures/TWP05/TWP05_5_en.html +++ b/367/lectures/TWP05/TWP05_5_en.html @@ -4,14 +4,14 @@ - 5. Variable names — PyZombis Scorm@979652b + 5. Variable names — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_6.html b/367/lectures/TWP05/TWP05_6.html index e5c35fed4..25a5773a4 100644 --- a/367/lectures/TWP05/TWP05_6.html +++ b/367/lectures/TWP05/TWP05_6.html @@ -4,14 +4,14 @@ - 6. Tipos de variables — PyZombis Scorm@979652b + 6. Tipos de variables — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_6_en.html b/367/lectures/TWP05/TWP05_6_en.html index 97f0759a7..e5b98f230 100644 --- a/367/lectures/TWP05/TWP05_6_en.html +++ b/367/lectures/TWP05/TWP05_6_en.html @@ -4,14 +4,14 @@ - 6. Variable types — PyZombis Scorm@979652b + 6. Variable types — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_7.html b/367/lectures/TWP05/TWP05_7.html index c06e57cc7..190e52525 100644 --- a/367/lectures/TWP05/TWP05_7.html +++ b/367/lectures/TWP05/TWP05_7.html @@ -4,14 +4,14 @@ - 7. Variables numéricas — PyZombis Scorm@979652b + 7. Variables numéricas — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_7_en.html b/367/lectures/TWP05/TWP05_7_en.html index 8a4c713ae..2df2d7086 100644 --- a/367/lectures/TWP05/TWP05_7_en.html +++ b/367/lectures/TWP05/TWP05_7_en.html @@ -4,14 +4,14 @@ - 7. Numeric variables — PyZombis Scorm@979652b + 7. Numeric variables — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_8.html b/367/lectures/TWP05/TWP05_8.html index 43ab7fff2..4292f0ddb 100644 --- a/367/lectures/TWP05/TWP05_8.html +++ b/367/lectures/TWP05/TWP05_8.html @@ -4,14 +4,14 @@ - 8. Variables lógicas — PyZombis Scorm@979652b + 8. Variables lógicas — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_8_en.html b/367/lectures/TWP05/TWP05_8_en.html index 5d3949fa0..8e33bdba3 100644 --- a/367/lectures/TWP05/TWP05_8_en.html +++ b/367/lectures/TWP05/TWP05_8_en.html @@ -4,14 +4,14 @@ - 8. Boolean Variables — PyZombis Scorm@979652b + 8. Boolean Variables — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_9.html b/367/lectures/TWP05/TWP05_9.html index 49b6353e5..19a13609d 100644 --- a/367/lectures/TWP05/TWP05_9.html +++ b/367/lectures/TWP05/TWP05_9.html @@ -4,14 +4,14 @@ - 9. Operadores lógicos — PyZombis Scorm@979652b + 9. Operadores lógicos — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/TWP05_9_en.html b/367/lectures/TWP05/TWP05_9_en.html index 9afcb33d9..d19415b53 100644 --- a/367/lectures/TWP05/TWP05_9_en.html +++ b/367/lectures/TWP05/TWP05_9_en.html @@ -4,14 +4,14 @@ - 9. Logical Operators — PyZombis Scorm@979652b + 9. Logical Operators — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/toctree.html b/367/lectures/TWP05/toctree.html index 7a316643f..4918948b9 100644 --- a/367/lectures/TWP05/toctree.html +++ b/367/lectures/TWP05/toctree.html @@ -4,14 +4,14 @@ - Variables y entrada de datos — PyZombis Scorm@979652b + Variables y entrada de datos — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP05/toctree_en.html b/367/lectures/TWP05/toctree_en.html index cdd76d766..d5ae94de0 100644 --- a/367/lectures/TWP05/toctree_en.html +++ b/367/lectures/TWP05/toctree_en.html @@ -4,14 +4,14 @@ - Variables and Input of Data — PyZombis Scorm@979652b + Variables and Input of Data — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP10/TWP10_1.html b/367/lectures/TWP10/TWP10_1.html index 56c5a76a8..5487bd356 100644 --- a/367/lectures/TWP10/TWP10_1.html +++ b/367/lectures/TWP10/TWP10_1.html @@ -4,14 +4,14 @@ - 1. Condiciones — PyZombis Scorm@979652b + 1. Condiciones — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP10/TWP10_1_en.html b/367/lectures/TWP10/TWP10_1_en.html index 849a6c878..6c9f423c6 100644 --- a/367/lectures/TWP10/TWP10_1_en.html +++ b/367/lectures/TWP10/TWP10_1_en.html @@ -4,14 +4,14 @@ - 1. Conditions — PyZombis Scorm@979652b + 1. Conditions — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP10/TWP10_2.html b/367/lectures/TWP10/TWP10_2.html index 6705ed7bb..8754abba1 100644 --- a/367/lectures/TWP10/TWP10_2.html +++ b/367/lectures/TWP10/TWP10_2.html @@ -4,14 +4,14 @@ - 2. “¿Correr o no correr? Esa es la cuestión…” — PyZombis Scorm@979652b + 2. “¿Correr o no correr? Esa es la cuestión…” — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP10/TWP10_2_en.html b/367/lectures/TWP10/TWP10_2_en.html index d70e35a75..8568f7325 100644 --- a/367/lectures/TWP10/TWP10_2_en.html +++ b/367/lectures/TWP10/TWP10_2_en.html @@ -4,14 +4,14 @@ - 2. “Run or not to run? That is the question… — PyZombis Scorm@979652b + 2. “Run or not to run? That is the question… — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP10/TWP10_3.html b/367/lectures/TWP10/TWP10_3.html index 0ec133e94..8e90e5192 100644 --- a/367/lectures/TWP10/TWP10_3.html +++ b/367/lectures/TWP10/TWP10_3.html @@ -4,14 +4,14 @@ - 3. if — PyZombis Scorm@979652b + 3. if — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP10/TWP10_3_en.html b/367/lectures/TWP10/TWP10_3_en.html index 77e68baa8..d5d6f5df4 100644 --- a/367/lectures/TWP10/TWP10_3_en.html +++ b/367/lectures/TWP10/TWP10_3_en.html @@ -4,14 +4,14 @@ - 3. if — PyZombis Scorm@979652b + 3. if — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP10/TWP10_4.html b/367/lectures/TWP10/TWP10_4.html index 6a2fdd04a..603d4e846 100644 --- a/367/lectures/TWP10/TWP10_4.html +++ b/367/lectures/TWP10/TWP10_4.html @@ -4,14 +4,14 @@ - 4. if / else — PyZombis Scorm@979652b + 4. if / else — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP10/TWP10_4_en.html b/367/lectures/TWP10/TWP10_4_en.html index 8511d5892..24e72556b 100644 --- a/367/lectures/TWP10/TWP10_4_en.html +++ b/367/lectures/TWP10/TWP10_4_en.html @@ -4,14 +4,14 @@ - 4. if / else — PyZombis Scorm@979652b + 4. if / else — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP10/TWP10_5.html b/367/lectures/TWP10/TWP10_5.html index 54fa148fa..1052d3303 100644 --- a/367/lectures/TWP10/TWP10_5.html +++ b/367/lectures/TWP10/TWP10_5.html @@ -4,14 +4,14 @@ - 5. Estructuras anidadas — PyZombis Scorm@979652b + 5. Estructuras anidadas — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP10/TWP10_5_en.html b/367/lectures/TWP10/TWP10_5_en.html index 08ab6d2c8..c31128ed1 100644 --- a/367/lectures/TWP10/TWP10_5_en.html +++ b/367/lectures/TWP10/TWP10_5_en.html @@ -4,14 +4,14 @@ - 5. Nested Structures — PyZombis Scorm@979652b + 5. Nested Structures — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP10/TWP10_6.html b/367/lectures/TWP10/TWP10_6.html index a62f40171..bb325e468 100644 --- a/367/lectures/TWP10/TWP10_6.html +++ b/367/lectures/TWP10/TWP10_6.html @@ -4,14 +4,14 @@ - 6. elif — PyZombis Scorm@979652b + 6. elif — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP10/TWP10_6_en.html b/367/lectures/TWP10/TWP10_6_en.html index 5222bc537..2253e776e 100644 --- a/367/lectures/TWP10/TWP10_6_en.html +++ b/367/lectures/TWP10/TWP10_6_en.html @@ -4,14 +4,14 @@ - 6. elif — PyZombis Scorm@979652b + 6. elif — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP10/TWP10_7.html b/367/lectures/TWP10/TWP10_7.html index 7599f1014..462dfbd1a 100644 --- a/367/lectures/TWP10/TWP10_7.html +++ b/367/lectures/TWP10/TWP10_7.html @@ -4,14 +4,14 @@ - 7. Lista de Ejercicios “again” — PyZombis Scorm@979652b + 7. Lista de Ejercicios “again” — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP10/TWP10_7_en.html b/367/lectures/TWP10/TWP10_7_en.html index 7db684b52..2a7b6595d 100644 --- a/367/lectures/TWP10/TWP10_7_en.html +++ b/367/lectures/TWP10/TWP10_7_en.html @@ -4,14 +4,14 @@ - 7. Exercise List “again” — PyZombis Scorm@979652b + 7. Exercise List “again” — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP10/toctree.html b/367/lectures/TWP10/toctree.html index bfafac17d..649f2e676 100644 --- a/367/lectures/TWP10/toctree.html +++ b/367/lectures/TWP10/toctree.html @@ -4,14 +4,14 @@ - Condiciones — PyZombis Scorm@979652b + Condiciones — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP10/toctree_en.html b/367/lectures/TWP10/toctree_en.html index 91a1df910..9e4f3daf2 100644 --- a/367/lectures/TWP10/toctree_en.html +++ b/367/lectures/TWP10/toctree_en.html @@ -4,14 +4,14 @@ - Conditions — PyZombis Scorm@979652b + Conditions — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP15/TWP15_1.html b/367/lectures/TWP15/TWP15_1.html index 13e03b21d..6853e50b2 100644 --- a/367/lectures/TWP15/TWP15_1.html +++ b/367/lectures/TWP15/TWP15_1.html @@ -4,14 +4,14 @@ - 1. Repeticiones — PyZombis Scorm@979652b + 1. Repeticiones — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP15/TWP15_1_en.html b/367/lectures/TWP15/TWP15_1_en.html index a34084b37..237f41763 100644 --- a/367/lectures/TWP15/TWP15_1_en.html +++ b/367/lectures/TWP15/TWP15_1_en.html @@ -4,14 +4,14 @@ - 1. Repetitions — PyZombis Scorm@979652b + 1. Repetitions — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP15/TWP15_2.html b/367/lectures/TWP15/TWP15_2.html index c651485bf..62dc3a5b4 100644 --- a/367/lectures/TWP15/TWP15_2.html +++ b/367/lectures/TWP15/TWP15_2.html @@ -4,14 +4,14 @@ - 2. Impresión de 1 a 3 — PyZombis Scorm@979652b + 2. Impresión de 1 a 3 — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP15/TWP15_2_en.html b/367/lectures/TWP15/TWP15_2_en.html index 743fcc278..4b124cc15 100644 --- a/367/lectures/TWP15/TWP15_2_en.html +++ b/367/lectures/TWP15/TWP15_2_en.html @@ -4,14 +4,14 @@ - 2. Printing from 1 to 3 — PyZombis Scorm@979652b + 2. Printing from 1 to 3 — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP15/TWP15_3.html b/367/lectures/TWP15/TWP15_3.html index 9fd6a978e..410e841d5 100644 --- a/367/lectures/TWP15/TWP15_3.html +++ b/367/lectures/TWP15/TWP15_3.html @@ -4,14 +4,14 @@ - 3. Contadores — PyZombis Scorm@979652b + 3. Contadores — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP15/TWP15_3_en.html b/367/lectures/TWP15/TWP15_3_en.html index f1aaed303..a36a8af6e 100644 --- a/367/lectures/TWP15/TWP15_3_en.html +++ b/367/lectures/TWP15/TWP15_3_en.html @@ -4,14 +4,14 @@ - 3. Counters — PyZombis Scorm@979652b + 3. Counters — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP15/TWP15_4.html b/367/lectures/TWP15/TWP15_4.html index 3563c6b78..a7ad0aee9 100644 --- a/367/lectures/TWP15/TWP15_4.html +++ b/367/lectures/TWP15/TWP15_4.html @@ -4,14 +4,14 @@ - 4. Acumuladores — PyZombis Scorm@979652b + 4. Acumuladores — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP15/TWP15_4_en.html b/367/lectures/TWP15/TWP15_4_en.html index b4443e855..679ce59b4 100644 --- a/367/lectures/TWP15/TWP15_4_en.html +++ b/367/lectures/TWP15/TWP15_4_en.html @@ -4,14 +4,14 @@ - 4. Accumulators — PyZombis Scorm@979652b + 4. Accumulators — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP15/TWP15_5.html b/367/lectures/TWP15/TWP15_5.html index 10a9a61a0..2752aa0d4 100644 --- a/367/lectures/TWP15/TWP15_5.html +++ b/367/lectures/TWP15/TWP15_5.html @@ -4,14 +4,14 @@ - 5. Interrumpiendo la repetición — PyZombis Scorm@979652b + 5. Interrumpiendo la repetición — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP15/TWP15_5_en.html b/367/lectures/TWP15/TWP15_5_en.html index 23c54af45..d48dd05c5 100644 --- a/367/lectures/TWP15/TWP15_5_en.html +++ b/367/lectures/TWP15/TWP15_5_en.html @@ -4,14 +4,14 @@ - 5. Interrupting the repetition — PyZombis Scorm@979652b + 5. Interrupting the repetition — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP15/TWP15_6.html b/367/lectures/TWP15/TWP15_6.html index 8820359f8..ac6f7b747 100644 --- a/367/lectures/TWP15/TWP15_6.html +++ b/367/lectures/TWP15/TWP15_6.html @@ -4,14 +4,14 @@ - 6. Repeticiones anidadas — PyZombis Scorm@979652b + 6. Repeticiones anidadas — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP15/TWP15_6_en.html b/367/lectures/TWP15/TWP15_6_en.html index 185e836c5..79570905e 100644 --- a/367/lectures/TWP15/TWP15_6_en.html +++ b/367/lectures/TWP15/TWP15_6_en.html @@ -4,14 +4,14 @@ - 6. Nested loops — PyZombis Scorm@979652b + 6. Nested loops — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP15/toctree.html b/367/lectures/TWP15/toctree.html index 200c1b887..01cc89deb 100644 --- a/367/lectures/TWP15/toctree.html +++ b/367/lectures/TWP15/toctree.html @@ -4,14 +4,14 @@ - Repeticiones — PyZombis Scorm@979652b + Repeticiones — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP15/toctree_en.html b/367/lectures/TWP15/toctree_en.html index d337de395..88b6dd57d 100644 --- a/367/lectures/TWP15/toctree_en.html +++ b/367/lectures/TWP15/toctree_en.html @@ -4,14 +4,14 @@ - Repetitions — PyZombis Scorm@979652b + Repetitions — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP17/TWP17_1.html b/367/lectures/TWP17/TWP17_1.html index e3c9ff5b0..ce3bc5b22 100644 --- a/367/lectures/TWP17/TWP17_1.html +++ b/367/lectures/TWP17/TWP17_1.html @@ -4,14 +4,14 @@ - 1. Edificio — PyZombis Scorm@979652b + 1. Edificio — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP17/TWP17_1_en.html b/367/lectures/TWP17/TWP17_1_en.html index 3d928ad75..470925788 100644 --- a/367/lectures/TWP17/TWP17_1_en.html +++ b/367/lectures/TWP17/TWP17_1_en.html @@ -4,14 +4,14 @@ - 1. Building — PyZombis Scorm@979652b + 1. Building — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP17/TWP17_2.html b/367/lectures/TWP17/TWP17_2.html index fb47f485e..139688f50 100644 --- a/367/lectures/TWP17/TWP17_2.html +++ b/367/lectures/TWP17/TWP17_2.html @@ -4,14 +4,14 @@ - 2. Tren de datos — PyZombis Scorm@979652b + 2. Tren de datos — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP17/TWP17_2_en.html b/367/lectures/TWP17/TWP17_2_en.html index a02448d8c..919e7130a 100644 --- a/367/lectures/TWP17/TWP17_2_en.html +++ b/367/lectures/TWP17/TWP17_2_en.html @@ -4,14 +4,14 @@ - 2. Data Train — PyZombis Scorm@979652b + 2. Data Train — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP17/TWP17_3.html b/367/lectures/TWP17/TWP17_3.html index a8bd08ae9..48b740dff 100644 --- a/367/lectures/TWP17/TWP17_3.html +++ b/367/lectures/TWP17/TWP17_3.html @@ -4,14 +4,14 @@ - 3. Sintaxis de una lista — PyZombis Scorm@979652b + 3. Sintaxis de una lista — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP17/TWP17_3_en.html b/367/lectures/TWP17/TWP17_3_en.html index 1810beba9..ef0ecd254 100644 --- a/367/lectures/TWP17/TWP17_3_en.html +++ b/367/lectures/TWP17/TWP17_3_en.html @@ -4,14 +4,14 @@ - 3. Syntax of a List — PyZombis Scorm@979652b + 3. Syntax of a List — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP17/TWP17_4.html b/367/lectures/TWP17/TWP17_4.html index 5e00649ee..4099806cd 100644 --- a/367/lectures/TWP17/TWP17_4.html +++ b/367/lectures/TWP17/TWP17_4.html @@ -4,14 +4,14 @@ - 4. Algunos ejemplos — PyZombis Scorm@979652b + 4. Algunos ejemplos — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP17/TWP17_4_en.html b/367/lectures/TWP17/TWP17_4_en.html index 05bcccd33..634030a92 100644 --- a/367/lectures/TWP17/TWP17_4_en.html +++ b/367/lectures/TWP17/TWP17_4_en.html @@ -4,14 +4,14 @@ - 4. Some examples — PyZombis Scorm@979652b + 4. Some examples — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP17/TWP17_5.html b/367/lectures/TWP17/TWP17_5.html index 648b6199f..bd80cf3e1 100644 --- a/367/lectures/TWP17/TWP17_5.html +++ b/367/lectures/TWP17/TWP17_5.html @@ -4,14 +4,14 @@ - 5. Lista de Ejercícios “again” — PyZombis Scorm@979652b + 5. Lista de Ejercícios “again” — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP17/TWP17_5_en.html b/367/lectures/TWP17/TWP17_5_en.html index 7b12293a3..31f35ce61 100644 --- a/367/lectures/TWP17/TWP17_5_en.html +++ b/367/lectures/TWP17/TWP17_5_en.html @@ -4,14 +4,14 @@ - 5. Exercise List “again” — PyZombis Scorm@979652b + 5. Exercise List “again” — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP17/toctree.html b/367/lectures/TWP17/toctree.html index 7c2ed294a..a7507a77c 100644 --- a/367/lectures/TWP17/toctree.html +++ b/367/lectures/TWP17/toctree.html @@ -4,14 +4,14 @@ - Listas — PyZombis Scorm@979652b + Listas — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP17/toctree_en.html b/367/lectures/TWP17/toctree_en.html index e511d5455..4d6e14cf6 100644 --- a/367/lectures/TWP17/toctree_en.html +++ b/367/lectures/TWP17/toctree_en.html @@ -4,14 +4,14 @@ - Lists — PyZombis Scorm@979652b + Lists — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP18/TWP18_1.html b/367/lectures/TWP18/TWP18_1.html index f8a1dd7b7..4eb77e58a 100644 --- a/367/lectures/TWP18/TWP18_1.html +++ b/367/lectures/TWP18/TWP18_1.html @@ -4,14 +4,14 @@ - 1. Comillas de varios tipos — PyZombis Scorm@979652b + 1. Comillas de varios tipos — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP18/TWP18_1_en.html b/367/lectures/TWP18/TWP18_1_en.html index ae19413df..f75a814bd 100644 --- a/367/lectures/TWP18/TWP18_1_en.html +++ b/367/lectures/TWP18/TWP18_1_en.html @@ -4,14 +4,14 @@ - 1. Quotes of various types — PyZombis Scorm@979652b + 1. Quotes of various types — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP18/TWP18_2.html b/367/lectures/TWP18/TWP18_2.html index 6aadcc944..6bd156b02 100644 --- a/367/lectures/TWP18/TWP18_2.html +++ b/367/lectures/TWP18/TWP18_2.html @@ -4,14 +4,14 @@ - 2. Rebanar — PyZombis Scorm@979652b + 2. Rebanar — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP18/TWP18_2_en.html b/367/lectures/TWP18/TWP18_2_en.html index 7b952c988..749fa89de 100644 --- a/367/lectures/TWP18/TWP18_2_en.html +++ b/367/lectures/TWP18/TWP18_2_en.html @@ -4,14 +4,14 @@ - 2. Slicing — PyZombis Scorm@979652b + 2. Slicing — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP18/TWP18_3.html b/367/lectures/TWP18/TWP18_3.html index f2c13d026..050080a27 100644 --- a/367/lectures/TWP18/TWP18_3.html +++ b/367/lectures/TWP18/TWP18_3.html @@ -4,14 +4,14 @@ - 3. Concatenación — PyZombis Scorm@979652b + 3. Concatenación — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP18/TWP18_3_en.html b/367/lectures/TWP18/TWP18_3_en.html index 816236e50..95d9a18eb 100644 --- a/367/lectures/TWP18/TWP18_3_en.html +++ b/367/lectures/TWP18/TWP18_3_en.html @@ -4,14 +4,14 @@ - 3. Concatenation — PyZombis Scorm@979652b + 3. Concatenation — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP18/TWP18_4.html b/367/lectures/TWP18/TWP18_4.html index 96f376702..1c5e61b5f 100644 --- a/367/lectures/TWP18/TWP18_4.html +++ b/367/lectures/TWP18/TWP18_4.html @@ -4,14 +4,14 @@ - 4. Verificación parcial de strings — PyZombis Scorm@979652b + 4. Verificación parcial de strings — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP18/TWP18_4_en.html b/367/lectures/TWP18/TWP18_4_en.html index 071f4f07a..d308d565d 100644 --- a/367/lectures/TWP18/TWP18_4_en.html +++ b/367/lectures/TWP18/TWP18_4_en.html @@ -4,14 +4,14 @@ - 4. Partial verification of strings — PyZombis Scorm@979652b + 4. Partial verification of strings — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP18/TWP18_5.html b/367/lectures/TWP18/TWP18_5.html index c23cef71a..0d1033b69 100644 --- a/367/lectures/TWP18/TWP18_5.html +++ b/367/lectures/TWP18/TWP18_5.html @@ -4,14 +4,14 @@ - 5. Funciones find y replace — PyZombis Scorm@979652b + 5. Funciones find y replace — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP18/TWP18_5_en.html b/367/lectures/TWP18/TWP18_5_en.html index d3f9c47ff..55e488450 100644 --- a/367/lectures/TWP18/TWP18_5_en.html +++ b/367/lectures/TWP18/TWP18_5_en.html @@ -4,14 +4,14 @@ - 5. Functions find and replace — PyZombis Scorm@979652b + 5. Functions find and replace — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP18/TWP18_6.html b/367/lectures/TWP18/TWP18_6.html index 2540b8a51..aa20b2fd7 100644 --- a/367/lectures/TWP18/TWP18_6.html +++ b/367/lectures/TWP18/TWP18_6.html @@ -4,14 +4,14 @@ - 6. Funciones split y join — PyZombis Scorm@979652b + 6. Funciones split y join — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP18/TWP18_6_en.html b/367/lectures/TWP18/TWP18_6_en.html index 37421f951..d467dce7f 100644 --- a/367/lectures/TWP18/TWP18_6_en.html +++ b/367/lectures/TWP18/TWP18_6_en.html @@ -4,14 +4,14 @@ - 6. Functions split and join — PyZombis Scorm@979652b + 6. Functions split and join — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP18/TWP18_7.html b/367/lectures/TWP18/TWP18_7.html index f3a911b20..5ee0d41d2 100644 --- a/367/lectures/TWP18/TWP18_7.html +++ b/367/lectures/TWP18/TWP18_7.html @@ -4,14 +4,14 @@ - 7. Dojo de codificación — PyZombis Scorm@979652b + 7. Dojo de codificación — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP18/TWP18_7_en.html b/367/lectures/TWP18/TWP18_7_en.html index 27dc2147e..a260994ca 100644 --- a/367/lectures/TWP18/TWP18_7_en.html +++ b/367/lectures/TWP18/TWP18_7_en.html @@ -4,14 +4,14 @@ - 7. Coding Dojo — PyZombis Scorm@979652b + 7. Coding Dojo — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP18/toctree.html b/367/lectures/TWP18/toctree.html index 636aade2e..47c46ef26 100644 --- a/367/lectures/TWP18/toctree.html +++ b/367/lectures/TWP18/toctree.html @@ -4,14 +4,14 @@ - Strings — PyZombis Scorm@979652b + Strings — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP18/toctree_en.html b/367/lectures/TWP18/toctree_en.html index 2f1415a0e..1940fe071 100644 --- a/367/lectures/TWP18/toctree_en.html +++ b/367/lectures/TWP18/toctree_en.html @@ -4,14 +4,14 @@ - Strings — PyZombis Scorm@979652b + Strings — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP20/TWP20_1.html b/367/lectures/TWP20/TWP20_1.html index e8ab27517..e1f8d77e5 100644 --- a/367/lectures/TWP20/TWP20_1.html +++ b/367/lectures/TWP20/TWP20_1.html @@ -4,14 +4,14 @@ - 1. for == while oculto — PyZombis Scorm@979652b + 1. for == while oculto — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP20/TWP20_1_en.html b/367/lectures/TWP20/TWP20_1_en.html index 984c14790..321851048 100644 --- a/367/lectures/TWP20/TWP20_1_en.html +++ b/367/lectures/TWP20/TWP20_1_en.html @@ -4,14 +4,14 @@ - 1. for == while hidden — PyZombis Scorm@979652b + 1. for == while hidden — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP20/TWP20_2.html b/367/lectures/TWP20/TWP20_2.html index 2b9d5ba17..a73958c41 100644 --- a/367/lectures/TWP20/TWP20_2.html +++ b/367/lectures/TWP20/TWP20_2.html @@ -4,14 +4,14 @@ - 2. Funciones def — PyZombis Scorm@979652b + 2. Funciones def — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP20/TWP20_2_en.html b/367/lectures/TWP20/TWP20_2_en.html index aa4ae6f0d..05ad97e5b 100644 --- a/367/lectures/TWP20/TWP20_2_en.html +++ b/367/lectures/TWP20/TWP20_2_en.html @@ -4,14 +4,14 @@ - 2. Functions def — PyZombis Scorm@979652b + 2. Functions def — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP20/TWP20_3.html b/367/lectures/TWP20/TWP20_3.html index 47eb24154..6690494a9 100644 --- a/367/lectures/TWP20/TWP20_3.html +++ b/367/lectures/TWP20/TWP20_3.html @@ -4,14 +4,14 @@ - 3. Variables locales y globales — PyZombis Scorm@979652b + 3. Variables locales y globales — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP20/TWP20_3_en.html b/367/lectures/TWP20/TWP20_3_en.html index 539242a1a..2b9d2dc3e 100644 --- a/367/lectures/TWP20/TWP20_3_en.html +++ b/367/lectures/TWP20/TWP20_3_en.html @@ -4,14 +4,14 @@ - 3. Local and Global Variables — PyZombis Scorm@979652b + 3. Local and Global Variables — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP20/TWP20_4.html b/367/lectures/TWP20/TWP20_4.html index 80fd06aab..f59d535aa 100644 --- a/367/lectures/TWP20/TWP20_4.html +++ b/367/lectures/TWP20/TWP20_4.html @@ -4,14 +4,14 @@ - 4. Números aleatorios — PyZombis Scorm@979652b + 4. Números aleatorios — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP20/TWP20_4_en.html b/367/lectures/TWP20/TWP20_4_en.html index 623f9811e..576f13b7e 100644 --- a/367/lectures/TWP20/TWP20_4_en.html +++ b/367/lectures/TWP20/TWP20_4_en.html @@ -4,14 +4,14 @@ - 4. Random numbers — PyZombis Scorm@979652b + 4. Random numbers — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP20/TWP20_5.html b/367/lectures/TWP20/TWP20_5.html index 65b511f73..20d5f36c7 100644 --- a/367/lectures/TWP20/TWP20_5.html +++ b/367/lectures/TWP20/TWP20_5.html @@ -4,14 +4,14 @@ - 5. Lista de ejercicios “again” — PyZombis Scorm@979652b + 5. Lista de ejercicios “again” — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP20/TWP20_5_en.html b/367/lectures/TWP20/TWP20_5_en.html index 88d90775d..ab56ea0ba 100644 --- a/367/lectures/TWP20/TWP20_5_en.html +++ b/367/lectures/TWP20/TWP20_5_en.html @@ -4,14 +4,14 @@ - 5. Exercise List “again” — PyZombis Scorm@979652b + 5. Exercise List “again” — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP20/toctree.html b/367/lectures/TWP20/toctree.html index 940e183af..ad7ecd696 100644 --- a/367/lectures/TWP20/toctree.html +++ b/367/lectures/TWP20/toctree.html @@ -4,14 +4,14 @@ - for, random y funciones — PyZombis Scorm@979652b + for, random y funciones — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP20/toctree_en.html b/367/lectures/TWP20/toctree_en.html index 9ff807412..970c6a896 100644 --- a/367/lectures/TWP20/toctree_en.html +++ b/367/lectures/TWP20/toctree_en.html @@ -4,14 +4,14 @@ - for, random and functions — PyZombis Scorm@979652b + for, random and functions — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP23/TWP23_1.html b/367/lectures/TWP23/TWP23_1.html index 50107b3e5..f8f5aecce 100644 --- a/367/lectures/TWP23/TWP23_1.html +++ b/367/lectures/TWP23/TWP23_1.html @@ -4,14 +4,14 @@ - 1. Archivos — PyZombis Scorm@979652b + 1. Archivos — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP23/TWP23_1_en.html b/367/lectures/TWP23/TWP23_1_en.html index 46bd402d2..8c1f5cc60 100644 --- a/367/lectures/TWP23/TWP23_1_en.html +++ b/367/lectures/TWP23/TWP23_1_en.html @@ -4,14 +4,14 @@ - 1. Files — PyZombis Scorm@979652b + 1. Files — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP23/TWP23_2.html b/367/lectures/TWP23/TWP23_2.html index 152724de0..58eec2b6e 100644 --- a/367/lectures/TWP23/TWP23_2.html +++ b/367/lectures/TWP23/TWP23_2.html @@ -4,14 +4,14 @@ - 2. Crypto — PyZombis Scorm@979652b + 2. Crypto — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP23/TWP23_2_en.html b/367/lectures/TWP23/TWP23_2_en.html index 834bbc1a1..4ff0fa872 100644 --- a/367/lectures/TWP23/TWP23_2_en.html +++ b/367/lectures/TWP23/TWP23_2_en.html @@ -4,14 +4,14 @@ - 2. Crypto — PyZombis Scorm@979652b + 2. Crypto — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP23/TWP23_3.html b/367/lectures/TWP23/TWP23_3.html index fa19e2e2f..34da95fc2 100644 --- a/367/lectures/TWP23/TWP23_3.html +++ b/367/lectures/TWP23/TWP23_3.html @@ -4,14 +4,14 @@ - 3. Validar dirección IP — PyZombis Scorm@979652b + 3. Validar dirección IP — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP23/TWP23_3_en.html b/367/lectures/TWP23/TWP23_3_en.html index 711858ed4..95b6ea174 100644 --- a/367/lectures/TWP23/TWP23_3_en.html +++ b/367/lectures/TWP23/TWP23_3_en.html @@ -4,14 +4,14 @@ - 3. Validate IP Address — PyZombis Scorm@979652b + 3. Validate IP Address — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP23/TWP23_4.html b/367/lectures/TWP23/TWP23_4.html index c3f9ee005..7ce56d98d 100644 --- a/367/lectures/TWP23/TWP23_4.html +++ b/367/lectures/TWP23/TWP23_4.html @@ -4,14 +4,14 @@ - 4. HTML — PyZombis Scorm@979652b + 4. HTML — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP23/TWP23_4_en.html b/367/lectures/TWP23/TWP23_4_en.html index 9bd91953c..ecdfaebe4 100644 --- a/367/lectures/TWP23/TWP23_4_en.html +++ b/367/lectures/TWP23/TWP23_4_en.html @@ -4,14 +4,14 @@ - 4. HTML — PyZombis Scorm@979652b + 4. HTML — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP23/TWP23_5.html b/367/lectures/TWP23/TWP23_5.html index 10507f03f..0e87661a1 100644 --- a/367/lectures/TWP23/TWP23_5.html +++ b/367/lectures/TWP23/TWP23_5.html @@ -4,14 +4,14 @@ - 5. Diccionarios — PyZombis Scorm@979652b + 5. Diccionarios — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP23/TWP23_5_en.html b/367/lectures/TWP23/TWP23_5_en.html index 84e334695..41c8ef24b 100644 --- a/367/lectures/TWP23/TWP23_5_en.html +++ b/367/lectures/TWP23/TWP23_5_en.html @@ -4,14 +4,14 @@ - 5. Dictionaries — PyZombis Scorm@979652b + 5. Dictionaries — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP23/TWP23_6.html b/367/lectures/TWP23/TWP23_6.html index 045ddee2e..006216598 100644 --- a/367/lectures/TWP23/TWP23_6.html +++ b/367/lectures/TWP23/TWP23_6.html @@ -4,14 +4,14 @@ - 6. Último Ejercicio — PyZombis Scorm@979652b + 6. Último Ejercicio — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP23/TWP23_6_en.html b/367/lectures/TWP23/TWP23_6_en.html index 081ece508..1818db7a1 100644 --- a/367/lectures/TWP23/TWP23_6_en.html +++ b/367/lectures/TWP23/TWP23_6_en.html @@ -4,14 +4,14 @@ - 6. Last Exercise — PyZombis Scorm@979652b + 6. Last Exercise — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP23/toctree.html b/367/lectures/TWP23/toctree.html index 8b3af34cd..5e63707d9 100644 --- a/367/lectures/TWP23/toctree.html +++ b/367/lectures/TWP23/toctree.html @@ -4,14 +4,14 @@ - Archivos y diccionarios — PyZombis Scorm@979652b + Archivos y diccionarios — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP23/toctree_en.html b/367/lectures/TWP23/toctree_en.html index 2222662ba..7cc765c23 100644 --- a/367/lectures/TWP23/toctree_en.html +++ b/367/lectures/TWP23/toctree_en.html @@ -4,14 +4,14 @@ - Files and dictionaries — PyZombis Scorm@979652b + Files and dictionaries — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP25/TWP25_1.html b/367/lectures/TWP25/TWP25_1.html index cf53f982e..a1d1c485e 100644 --- a/367/lectures/TWP25/TWP25_1.html +++ b/367/lectures/TWP25/TWP25_1.html @@ -4,14 +4,14 @@ - 1. Clases y objetos — PyZombis Scorm@979652b + 1. Clases y objetos — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP25/TWP25_1_en.html b/367/lectures/TWP25/TWP25_1_en.html index 2e4d4cec6..f76ce4553 100644 --- a/367/lectures/TWP25/TWP25_1_en.html +++ b/367/lectures/TWP25/TWP25_1_en.html @@ -4,14 +4,14 @@ - 1. Classes and objects — PyZombis Scorm@979652b + 1. Classes and objects — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP25/TWP25_2.html b/367/lectures/TWP25/TWP25_2.html index f65c5b216..9cb74ac16 100644 --- a/367/lectures/TWP25/TWP25_2.html +++ b/367/lectures/TWP25/TWP25_2.html @@ -4,14 +4,14 @@ - 2. Clase Cliente y Clase Cuenta — PyZombis Scorm@979652b + 2. Clase Cliente y Clase Cuenta — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP25/TWP25_2_en.html b/367/lectures/TWP25/TWP25_2_en.html index 53e94b482..b294e2e7c 100644 --- a/367/lectures/TWP25/TWP25_2_en.html +++ b/367/lectures/TWP25/TWP25_2_en.html @@ -4,14 +4,14 @@ - 2. Class Client and Class Account — PyZombis Scorm@979652b + 2. Class Client and Class Account — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP25/TWP25_3.html b/367/lectures/TWP25/TWP25_3.html index 43439f031..2a292f2fd 100644 --- a/367/lectures/TWP25/TWP25_3.html +++ b/367/lectures/TWP25/TWP25_3.html @@ -4,14 +4,14 @@ - 3. Declaración de operaciones y herencia — PyZombis Scorm@979652b + 3. Declaración de operaciones y herencia — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP25/TWP25_3_en.html b/367/lectures/TWP25/TWP25_3_en.html index 9b04747ab..1147371eb 100644 --- a/367/lectures/TWP25/TWP25_3_en.html +++ b/367/lectures/TWP25/TWP25_3_en.html @@ -4,14 +4,14 @@ - 3. Operations declaration and inheritance — PyZombis Scorm@979652b + 3. Operations declaration and inheritance — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP25/TWP25_4.html b/367/lectures/TWP25/TWP25_4.html index 8ce8f189d..7bd413dd6 100644 --- a/367/lectures/TWP25/TWP25_4.html +++ b/367/lectures/TWP25/TWP25_4.html @@ -4,14 +4,14 @@ - 4. Otros ejemplos de POO — PyZombis Scorm@979652b + 4. Otros ejemplos de POO — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP25/TWP25_4_en.html b/367/lectures/TWP25/TWP25_4_en.html index e7b50d6c0..4f54510a4 100644 --- a/367/lectures/TWP25/TWP25_4_en.html +++ b/367/lectures/TWP25/TWP25_4_en.html @@ -4,14 +4,14 @@ - 4. Other examples of OOP — PyZombis Scorm@979652b + 4. Other examples of OOP — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP25/TWP25_5.html b/367/lectures/TWP25/TWP25_5.html index d758e66b7..ebf07bc27 100644 --- a/367/lectures/TWP25/TWP25_5.html +++ b/367/lectures/TWP25/TWP25_5.html @@ -4,14 +4,14 @@ - 5. Múltiple herencia y ¿Qué objeto es? — PyZombis Scorm@979652b + 5. Múltiple herencia y ¿Qué objeto es? — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP25/TWP25_5_en.html b/367/lectures/TWP25/TWP25_5_en.html index 9558c1d6f..15965fd25 100644 --- a/367/lectures/TWP25/TWP25_5_en.html +++ b/367/lectures/TWP25/TWP25_5_en.html @@ -4,14 +4,14 @@ - 5. Multiple Inheritance and What Object is It? — PyZombis Scorm@979652b + 5. Multiple Inheritance and What Object is It? — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP25/toctree.html b/367/lectures/TWP25/toctree.html index 4491c7d93..1697c17f6 100644 --- a/367/lectures/TWP25/toctree.html +++ b/367/lectures/TWP25/toctree.html @@ -4,14 +4,14 @@ - Clases y objetos — PyZombis Scorm@979652b + Clases y objetos — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP25/toctree_en.html b/367/lectures/TWP25/toctree_en.html index 5cdbae4c0..21eca8ff6 100644 --- a/367/lectures/TWP25/toctree_en.html +++ b/367/lectures/TWP25/toctree_en.html @@ -4,14 +4,14 @@ - Classes and objects — PyZombis Scorm@979652b + Classes and objects — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP30/TWP30_1.html b/367/lectures/TWP30/TWP30_1.html index 98bfdb2e5..0be6decda 100644 --- a/367/lectures/TWP30/TWP30_1.html +++ b/367/lectures/TWP30/TWP30_1.html @@ -4,14 +4,14 @@ - 1. Lo que aprendimos — PyZombis Scorm@979652b + 1. Lo que aprendimos — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP30/TWP30_1_en.html b/367/lectures/TWP30/TWP30_1_en.html index 9b3318a14..caa8e2ef7 100644 --- a/367/lectures/TWP30/TWP30_1_en.html +++ b/367/lectures/TWP30/TWP30_1_en.html @@ -4,14 +4,14 @@ - 1. What we learned — PyZombis Scorm@979652b + 1. What we learned — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP30/TWP30_2.html b/367/lectures/TWP30/TWP30_2.html index 904d379cd..9c449b8c9 100644 --- a/367/lectures/TWP30/TWP30_2.html +++ b/367/lectures/TWP30/TWP30_2.html @@ -4,14 +4,14 @@ - 2. Las partes de tu programa — PyZombis Scorm@979652b + 2. Las partes de tu programa — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP30/TWP30_2_en.html b/367/lectures/TWP30/TWP30_2_en.html index 8595237a0..0197b66d3 100644 --- a/367/lectures/TWP30/TWP30_2_en.html +++ b/367/lectures/TWP30/TWP30_2_en.html @@ -4,14 +4,14 @@ - 2. The parts of your program — PyZombis Scorm@979652b + 2. The parts of your program — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP30/TWP30_3.html b/367/lectures/TWP30/TWP30_3.html index 204588fd1..017e6af81 100644 --- a/367/lectures/TWP30/TWP30_3.html +++ b/367/lectures/TWP30/TWP30_3.html @@ -4,14 +4,14 @@ - 3. ¿Qué tipos de errores? — PyZombis Scorm@979652b + 3. ¿Qué tipos de errores? — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP30/TWP30_3_en.html b/367/lectures/TWP30/TWP30_3_en.html index 2b19346e8..498505e03 100644 --- a/367/lectures/TWP30/TWP30_3_en.html +++ b/367/lectures/TWP30/TWP30_3_en.html @@ -4,14 +4,14 @@ - 3. What types of errors? — PyZombis Scorm@979652b + 3. What types of errors? — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP30/TWP30_4.html b/367/lectures/TWP30/TWP30_4.html index 07ec1b2af..55f549e17 100644 --- a/367/lectures/TWP30/TWP30_4.html +++ b/367/lectures/TWP30/TWP30_4.html @@ -4,14 +4,14 @@ - 4. El programa es una red de carreteras — PyZombis Scorm@979652b + 4. El programa es una red de carreteras — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP30/TWP30_4_en.html b/367/lectures/TWP30/TWP30_4_en.html index 63dd82c63..ae8a75b4a 100644 --- a/367/lectures/TWP30/TWP30_4_en.html +++ b/367/lectures/TWP30/TWP30_4_en.html @@ -4,14 +4,14 @@ - 4. The program is a network of roads — PyZombis Scorm@979652b + 4. The program is a network of roads — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP30/TWP30_5.html b/367/lectures/TWP30/TWP30_5.html index 0d893edaa..b9b943d54 100644 --- a/367/lectures/TWP30/TWP30_5.html +++ b/367/lectures/TWP30/TWP30_5.html @@ -4,14 +4,14 @@ - 5. Repeticiones — PyZombis Scorm@979652b + 5. Repeticiones — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP30/TWP30_5_en.html b/367/lectures/TWP30/TWP30_5_en.html index 4ef86ff1b..936588868 100644 --- a/367/lectures/TWP30/TWP30_5_en.html +++ b/367/lectures/TWP30/TWP30_5_en.html @@ -4,14 +4,14 @@ - 5. Repetitions — PyZombis Scorm@979652b + 5. Repetitions — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP30/TWP30_6.html b/367/lectures/TWP30/TWP30_6.html index eb13dcec4..b7212c292 100644 --- a/367/lectures/TWP30/TWP30_6.html +++ b/367/lectures/TWP30/TWP30_6.html @@ -4,14 +4,14 @@ - 6. Sortear el número a adivinar — PyZombis Scorm@979652b + 6. Sortear el número a adivinar — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP30/TWP30_6_en.html b/367/lectures/TWP30/TWP30_6_en.html index 98f7859df..7e15d295e 100644 --- a/367/lectures/TWP30/TWP30_6_en.html +++ b/367/lectures/TWP30/TWP30_6_en.html @@ -4,14 +4,14 @@ - 6. Raffle the number to guess — PyZombis Scorm@979652b + 6. Raffle the number to guess — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP30/TWP30_7.html b/367/lectures/TWP30/TWP30_7.html index 1a2f7749a..f78161f97 100644 --- a/367/lectures/TWP30/TWP30_7.html +++ b/367/lectures/TWP30/TWP30_7.html @@ -4,14 +4,14 @@ - 7. Herramientas de Python — PyZombis Scorm@979652b + 7. Herramientas de Python — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP30/TWP30_7_en.html b/367/lectures/TWP30/TWP30_7_en.html index f77f97d9b..9c8a27a90 100644 --- a/367/lectures/TWP30/TWP30_7_en.html +++ b/367/lectures/TWP30/TWP30_7_en.html @@ -4,14 +4,14 @@ - 7. Python Tools — PyZombis Scorm@979652b + 7. Python Tools — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP30/toctree.html b/367/lectures/TWP30/toctree.html index a21da4d52..673778523 100644 --- a/367/lectures/TWP30/toctree.html +++ b/367/lectures/TWP30/toctree.html @@ -4,14 +4,14 @@ - Revisión general 1 — PyZombis Scorm@979652b + Revisión general 1 — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP30/toctree_en.html b/367/lectures/TWP30/toctree_en.html index a77e4aa38..17230b8fd 100644 --- a/367/lectures/TWP30/toctree_en.html +++ b/367/lectures/TWP30/toctree_en.html @@ -4,14 +4,14 @@ - General review 1 — PyZombis Scorm@979652b + General review 1 — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP33/TWP33_1.html b/367/lectures/TWP33/TWP33_1.html index b63907acc..33b2a497d 100644 --- a/367/lectures/TWP33/TWP33_1.html +++ b/367/lectures/TWP33/TWP33_1.html @@ -4,14 +4,14 @@ - 1. Starbuzz Café — PyZombis Scorm@979652b + 1. Starbuzz Café — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP33/TWP33_1_en.html b/367/lectures/TWP33/TWP33_1_en.html index a60c83432..6d9b2dada 100644 --- a/367/lectures/TWP33/TWP33_1_en.html +++ b/367/lectures/TWP33/TWP33_1_en.html @@ -4,14 +4,14 @@ - 1. Starbuzz Café — PyZombis Scorm@979652b + 1. Starbuzz Café — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP33/TWP33_2.html b/367/lectures/TWP33/TWP33_2.html index 4b188810b..ded1ccc18 100644 --- a/367/lectures/TWP33/TWP33_2.html +++ b/367/lectures/TWP33/TWP33_2.html @@ -4,14 +4,14 @@ - 2. ¿Cómo obtener solo el precio? — PyZombis Scorm@979652b + 2. ¿Cómo obtener solo el precio? — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP33/TWP33_2_en.html b/367/lectures/TWP33/TWP33_2_en.html index 5094d8dfd..308f67a60 100644 --- a/367/lectures/TWP33/TWP33_2_en.html +++ b/367/lectures/TWP33/TWP33_2_en.html @@ -4,14 +4,14 @@ - 2. How to get only the price? — PyZombis Scorm@979652b + 2. How to get only the price? — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP33/TWP33_3.html b/367/lectures/TWP33/TWP33_3.html index f3ab7a3ff..5115e2114 100644 --- a/367/lectures/TWP33/TWP33_3.html +++ b/367/lectures/TWP33/TWP33_3.html @@ -4,14 +4,14 @@ - 3. Cortar — PyZombis Scorm@979652b + 3. Cortar — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP33/TWP33_3_en.html b/367/lectures/TWP33/TWP33_3_en.html index 2ae45a090..54f183f96 100644 --- a/367/lectures/TWP33/TWP33_3_en.html +++ b/367/lectures/TWP33/TWP33_3_en.html @@ -4,14 +4,14 @@ - 3. Cut — PyZombis Scorm@979652b + 3. Cut — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP33/TWP33_4.html b/367/lectures/TWP33/TWP33_4.html index f01e6a05d..481cdf42f 100644 --- a/367/lectures/TWP33/TWP33_4.html +++ b/367/lectures/TWP33/TWP33_4.html @@ -4,14 +4,14 @@ - 4. Descuentos para clientes leales — PyZombis Scorm@979652b + 4. Descuentos para clientes leales — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP33/TWP33_4_en.html b/367/lectures/TWP33/TWP33_4_en.html index 5764fc2c2..3651f814c 100644 --- a/367/lectures/TWP33/TWP33_4_en.html +++ b/367/lectures/TWP33/TWP33_4_en.html @@ -4,14 +4,14 @@ - 4. Discounts for loyal customers — PyZombis Scorm@979652b + 4. Discounts for loyal customers — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP33/TWP33_5.html b/367/lectures/TWP33/TWP33_5.html index 5dc70edad..05e6419fe 100644 --- a/367/lectures/TWP33/TWP33_5.html +++ b/367/lectures/TWP33/TWP33_5.html @@ -4,14 +4,14 @@ - 5. Los datos de Python son inteligentes — PyZombis Scorm@979652b + 5. Los datos de Python son inteligentes — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP33/TWP33_5_en.html b/367/lectures/TWP33/TWP33_5_en.html index 4e6c1c7a1..9f8362912 100644 --- a/367/lectures/TWP33/TWP33_5_en.html +++ b/367/lectures/TWP33/TWP33_5_en.html @@ -4,14 +4,14 @@ - 5. Python data is intelligent — PyZombis Scorm@979652b + 5. Python data is intelligent — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP33/TWP33_6.html b/367/lectures/TWP33/TWP33_6.html index 999f86bac..f81e3bc48 100644 --- a/367/lectures/TWP33/TWP33_6.html +++ b/367/lectures/TWP33/TWP33_6.html @@ -4,14 +4,14 @@ - 6. Solo cuando es inferior a 4,74 — PyZombis Scorm@979652b + 6. Solo cuando es inferior a 4,74 — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP33/TWP33_6_en.html b/367/lectures/TWP33/TWP33_6_en.html index 3121ef653..b15ab5165 100644 --- a/367/lectures/TWP33/TWP33_6_en.html +++ b/367/lectures/TWP33/TWP33_6_en.html @@ -4,14 +4,14 @@ - 6. Only when it is less than 4.74 — PyZombis Scorm@979652b + 6. Only when it is less than 4.74 — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP33/TWP33_7.html b/367/lectures/TWP33/TWP33_7.html index 4f8208d60..b28cb321b 100644 --- a/367/lectures/TWP33/TWP33_7.html +++ b/367/lectures/TWP33/TWP33_7.html @@ -4,14 +4,14 @@ - 7. Los strings son diferentes de los números — PyZombis Scorm@979652b + 7. Los strings son diferentes de los números — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP33/TWP33_7_en.html b/367/lectures/TWP33/TWP33_7_en.html index 78a6e77b9..9fc2ce6bf 100644 --- a/367/lectures/TWP33/TWP33_7_en.html +++ b/367/lectures/TWP33/TWP33_7_en.html @@ -4,14 +4,14 @@ - 7. Strings are different from numbers — PyZombis Scorm@979652b + 7. Strings are different from numbers — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP33/TWP33_8.html b/367/lectures/TWP33/TWP33_8.html index 21e2c2a07..f0e28bf79 100644 --- a/367/lectures/TWP33/TWP33_8.html +++ b/367/lectures/TWP33/TWP33_8.html @@ -4,14 +4,14 @@ - 8. Algo salió mal — PyZombis Scorm@979652b + 8. Algo salió mal — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP33/TWP33_8_en.html b/367/lectures/TWP33/TWP33_8_en.html index dc10882e9..5fc72fbb8 100644 --- a/367/lectures/TWP33/TWP33_8_en.html +++ b/367/lectures/TWP33/TWP33_8_en.html @@ -4,14 +4,14 @@ - 8. Something went wrong — PyZombis Scorm@979652b + 8. Something went wrong — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP33/TWP33_9.html b/367/lectures/TWP33/TWP33_9.html index 442e5dab8..b748de5d1 100644 --- a/367/lectures/TWP33/TWP33_9.html +++ b/367/lectures/TWP33/TWP33_9.html @@ -4,14 +4,14 @@ - 9. Biblioteca time — PyZombis Scorm@979652b + 9. Biblioteca time — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP33/TWP33_9_en.html b/367/lectures/TWP33/TWP33_9_en.html index a660605ea..e25d71d28 100644 --- a/367/lectures/TWP33/TWP33_9_en.html +++ b/367/lectures/TWP33/TWP33_9_en.html @@ -4,14 +4,14 @@ - 9. Library time — PyZombis Scorm@979652b + 9. Library time — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP33/toctree.html b/367/lectures/TWP33/toctree.html index bbde2e7fa..18017c557 100644 --- a/367/lectures/TWP33/toctree.html +++ b/367/lectures/TWP33/toctree.html @@ -4,14 +4,14 @@ - Revisión de String — PyZombis Scorm@979652b + Revisión de String — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP33/toctree_en.html b/367/lectures/TWP33/toctree_en.html index 350dc1dac..60287f80f 100644 --- a/367/lectures/TWP33/toctree_en.html +++ b/367/lectures/TWP33/toctree_en.html @@ -4,14 +4,14 @@ - String Review — PyZombis Scorm@979652b + String Review — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP35/TWP35_1.html b/367/lectures/TWP35/TWP35_1.html index a744b64ee..2274652f9 100644 --- a/367/lectures/TWP35/TWP35_1.html +++ b/367/lectures/TWP35/TWP35_1.html @@ -4,14 +4,14 @@ - 1. Seamos más organizados — PyZombis Scorm@979652b + 1. Seamos más organizados — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP35/TWP35_1_en.html b/367/lectures/TWP35/TWP35_1_en.html index 7d32ff565..e202ba8cb 100644 --- a/367/lectures/TWP35/TWP35_1_en.html +++ b/367/lectures/TWP35/TWP35_1_en.html @@ -4,14 +4,14 @@ - 1. Let’s be more organized — PyZombis Scorm@979652b + 1. Let’s be more organized — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP35/TWP35_2.html b/367/lectures/TWP35/TWP35_2.html index 4d430fb45..f2f480457 100644 --- a/367/lectures/TWP35/TWP35_2.html +++ b/367/lectures/TWP35/TWP35_2.html @@ -4,14 +4,14 @@ - 2. Nueva sugerencia de programa — PyZombis Scorm@979652b + 2. Nueva sugerencia de programa — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP35/TWP35_2_en.html b/367/lectures/TWP35/TWP35_2_en.html index b38cae08e..e2a90e30a 100644 --- a/367/lectures/TWP35/TWP35_2_en.html +++ b/367/lectures/TWP35/TWP35_2_en.html @@ -4,14 +4,14 @@ - 2. New program suggestion — PyZombis Scorm@979652b + 2. New program suggestion — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP35/TWP35_3.html b/367/lectures/TWP35/TWP35_3.html index 90865d978..f8d5b8985 100644 --- a/367/lectures/TWP35/TWP35_3.html +++ b/367/lectures/TWP35/TWP35_3.html @@ -4,14 +4,14 @@ - 3. Programa con funciones — PyZombis Scorm@979652b + 3. Programa con funciones — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP35/TWP35_3_en.html b/367/lectures/TWP35/TWP35_3_en.html index 23ec86ed6..9332e851e 100644 --- a/367/lectures/TWP35/TWP35_3_en.html +++ b/367/lectures/TWP35/TWP35_3_en.html @@ -4,14 +4,14 @@ - 3. Program with functions — PyZombis Scorm@979652b + 3. Program with functions — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP35/TWP35_4.html b/367/lectures/TWP35/TWP35_4.html index 1f5547292..bca065009 100644 --- a/367/lectures/TWP35/TWP35_4.html +++ b/367/lectures/TWP35/TWP35_4.html @@ -4,14 +4,14 @@ - 4. JSON — PyZombis Scorm@979652b + 4. JSON — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP35/TWP35_4_en.html b/367/lectures/TWP35/TWP35_4_en.html index be5f85aa5..af05e442b 100644 --- a/367/lectures/TWP35/TWP35_4_en.html +++ b/367/lectures/TWP35/TWP35_4_en.html @@ -4,14 +4,14 @@ - 4. JSON — PyZombis Scorm@979652b + 4. JSON — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP35/toctree.html b/367/lectures/TWP35/toctree.html index ef6f3dd13..c629b7bb1 100644 --- a/367/lectures/TWP35/toctree.html +++ b/367/lectures/TWP35/toctree.html @@ -4,14 +4,14 @@ - Revisión de Funciones — PyZombis Scorm@979652b + Revisión de Funciones — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP35/toctree_en.html b/367/lectures/TWP35/toctree_en.html index e5599b40d..6e6382c65 100644 --- a/367/lectures/TWP35/toctree_en.html +++ b/367/lectures/TWP35/toctree_en.html @@ -4,14 +4,14 @@ - Function Review — PyZombis Scorm@979652b + Function Review — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP37/TWP37_1.html b/367/lectures/TWP37/TWP37_1.html index 963feaa31..04cf6eb66 100644 --- a/367/lectures/TWP37/TWP37_1.html +++ b/367/lectures/TWP37/TWP37_1.html @@ -4,14 +4,14 @@ - 1. Campeonato de Surf de Codeville — PyZombis Scorm@979652b + 1. Campeonato de Surf de Codeville — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP37/TWP37_1_en.html b/367/lectures/TWP37/TWP37_1_en.html index fff33e348..59650465f 100644 --- a/367/lectures/TWP37/TWP37_1_en.html +++ b/367/lectures/TWP37/TWP37_1_en.html @@ -4,14 +4,14 @@ - 1. Surf Championship in Codeville — PyZombis Scorm@979652b + 1. Surf Championship in Codeville — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP37/TWP37_2.html b/367/lectures/TWP37/TWP37_2.html index 6cd510211..658c2de5c 100644 --- a/367/lectures/TWP37/TWP37_2.html +++ b/367/lectures/TWP37/TWP37_2.html @@ -4,14 +4,14 @@ - 2. Leer el archivo surf.txt — PyZombis Scorm@979652b + 2. Leer el archivo surf.txt — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP37/TWP37_2_en.html b/367/lectures/TWP37/TWP37_2_en.html index e69b79323..0915b62b5 100644 --- a/367/lectures/TWP37/TWP37_2_en.html +++ b/367/lectures/TWP37/TWP37_2_en.html @@ -4,14 +4,14 @@ - 2. Reading the file surf_en.txt — PyZombis Scorm@979652b + 2. Reading the file surf_en.txt — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP37/TWP37_3.html b/367/lectures/TWP37/TWP37_3.html index 9249e91de..5aed3006c 100644 --- a/367/lectures/TWP37/TWP37_3.html +++ b/367/lectures/TWP37/TWP37_3.html @@ -4,14 +4,14 @@ - 3. El marcador… — PyZombis Scorm@979652b + 3. El marcador… — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP37/TWP37_3_en.html b/367/lectures/TWP37/TWP37_3_en.html index 47e879be0..148cddd01 100644 --- a/367/lectures/TWP37/TWP37_3_en.html +++ b/367/lectures/TWP37/TWP37_3_en.html @@ -4,14 +4,14 @@ - 3. The marker… — PyZombis Scorm@979652b + 3. The marker… — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP37/TWP37_4.html b/367/lectures/TWP37/TWP37_4.html index 40055c11b..0701fd047 100644 --- a/367/lectures/TWP37/TWP37_4.html +++ b/367/lectures/TWP37/TWP37_4.html @@ -4,14 +4,14 @@ - 4. Ordenar la lista sería mejor — PyZombis Scorm@979652b + 4. Ordenar la lista sería mejor — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP37/TWP37_4_en.html b/367/lectures/TWP37/TWP37_4_en.html index 1c4701376..88e461e8b 100644 --- a/367/lectures/TWP37/TWP37_4_en.html +++ b/367/lectures/TWP37/TWP37_4_en.html @@ -4,14 +4,14 @@ - 4. Sorting the List would be Better — PyZombis Scorm@979652b + 4. Sorting the List would be Better — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP37/TWP37_5.html b/367/lectures/TWP37/TWP37_5.html index 69527d6c7..85351ce73 100644 --- a/367/lectures/TWP37/TWP37_5.html +++ b/367/lectures/TWP37/TWP37_5.html @@ -4,14 +4,14 @@ - 5. Nueva puntuación — PyZombis Scorm@979652b + 5. Nueva puntuación — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP37/TWP37_5_en.html b/367/lectures/TWP37/TWP37_5_en.html index 33d01f52d..3f180a7a8 100644 --- a/367/lectures/TWP37/TWP37_5_en.html +++ b/367/lectures/TWP37/TWP37_5_en.html @@ -4,14 +4,14 @@ - 5. New Score — PyZombis Scorm@979652b + 5. New Score — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP37/TWP37_6.html b/367/lectures/TWP37/TWP37_6.html index ea96b3776..bd5b41ca5 100644 --- a/367/lectures/TWP37/TWP37_6.html +++ b/367/lectures/TWP37/TWP37_6.html @@ -4,14 +4,14 @@ - 6. ¿Cuáles son los nombres de los ganadores? — PyZombis Scorm@979652b + 6. ¿Cuáles son los nombres de los ganadores? — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP37/TWP37_6_en.html b/367/lectures/TWP37/TWP37_6_en.html index 9ac10fd2d..b5ac602a0 100644 --- a/367/lectures/TWP37/TWP37_6_en.html +++ b/367/lectures/TWP37/TWP37_6_en.html @@ -4,14 +4,14 @@ - 6. What are the names of the winners? — PyZombis Scorm@979652b + 6. What are the names of the winners? — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP37/toctree.html b/367/lectures/TWP37/toctree.html index e40c5c633..f0fa8a5b6 100644 --- a/367/lectures/TWP37/toctree.html +++ b/367/lectures/TWP37/toctree.html @@ -4,14 +4,14 @@ - Revisión de Archivos, Listas y Diccionarios — PyZombis Scorm@979652b + Revisión de Archivos, Listas y Diccionarios — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP37/toctree_en.html b/367/lectures/TWP37/toctree_en.html index 1f84f4353..279271640 100644 --- a/367/lectures/TWP37/toctree_en.html +++ b/367/lectures/TWP37/toctree_en.html @@ -4,14 +4,14 @@ - File, List, and Dictionary Review — PyZombis Scorm@979652b + File, List, and Dictionary Review — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP38/TWP38_1.html b/367/lectures/TWP38/TWP38_1.html index 430994ee7..19f071df4 100644 --- a/367/lectures/TWP38/TWP38_1.html +++ b/367/lectures/TWP38/TWP38_1.html @@ -4,14 +4,14 @@ - 1. ¿Qué es un programa? — PyZombis Scorm@979652b + 1. ¿Qué es un programa? — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP38/TWP38_1_en.html b/367/lectures/TWP38/TWP38_1_en.html index 5e7ca6918..13b044b8b 100644 --- a/367/lectures/TWP38/TWP38_1_en.html +++ b/367/lectures/TWP38/TWP38_1_en.html @@ -4,14 +4,14 @@ - 1. What is a program? — PyZombis Scorm@979652b + 1. What is a program? — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da diff --git a/367/lectures/TWP38/TWP38_2.html b/367/lectures/TWP38/TWP38_2.html index 85b875647..fb18d98e4 100644 --- a/367/lectures/TWP38/TWP38_2.html +++ b/367/lectures/TWP38/TWP38_2.html @@ -4,14 +4,14 @@ - 2. Python — PyZombis Scorm@979652b + 2. Python — PyZombis Scorm@73f24da + - @@ -21,11 +21,11 @@ + + - - @@ -92,7 +92,7 @@ - PyZombis Scorm@979652b + PyZombis Scorm@73f24da @@ -389,7 +389,7 @@

2. Python", "globals": {}, "ordered_globals": [], "stack_to_render": [], "heap": {}, "stdout": ""}, {"line": 6, "event": "step_line", "func_name": "", "globals": {"amo_dos_puntos": ["REF", 1]}, "ordered_globals": ["amo_dos_puntos"], "stack_to_render": [], "heap": {"1": ["FUNCTION", "amo_dos_puntos()", null]}, "stdout": ""}, {"line": 7, "event": "step_line", "func_name": "", "globals": {"amo_dos_puntos": ["REF", 1]}, "ordered_globals": ["amo_dos_puntos"], "stack_to_render": [], "heap": {"1": ["FUNCTION", "amo_dos_puntos()", null]}, "stdout": "\n"}, {"line": 7, "event": "return", "func_name": "", "globals": {"amo_dos_puntos": ["REF", 1]}, "ordered_globals": ["amo_dos_puntos"], "stack_to_render": [], "heap": {"1": ["FUNCTION", "amo_dos_puntos()", null]}, "stdout": "\n\n"}]}; +allTraceData["cl_l38_2c"] = {"code": "def amo_dos_puntos():\n print(\"Yo amo:!\")\n print('Dos puntos == \":\"')\n\n\nprint(amo_dos_puntos)\nprint(print)", "trace": [{"line": 1, "event": "step_line", "func_name": "", "globals": {}, "ordered_globals": [], "stack_to_render": [], "heap": {}, "stdout": ""}, {"line": 6, "event": "step_line", "func_name": "", "globals": {"amo_dos_puntos": ["REF", 1]}, "ordered_globals": ["amo_dos_puntos"], "stack_to_render": [], "heap": {"1": ["FUNCTION", "amo_dos_puntos()", null]}, "stdout": ""}, {"line": 7, "event": "step_line", "func_name": "", "globals": {"amo_dos_puntos": ["REF", 1]}, "ordered_globals": ["amo_dos_puntos"], "stack_to_render": [], "heap": {"1": ["FUNCTION", "amo_dos_puntos()", null]}, "stdout": "\n"}, {"line": 7, "event": "return", "func_name": "", "globals": {"amo_dos_puntos": ["REF", 1]}, "ordered_globals": ["amo_dos_puntos"], "stack_to_render": [], "heap": {"1": ["FUNCTION", "amo_dos_puntos()", null]}, "stdout": "\n\n"}]};