diff --git a/assets/python-es-lecciones5.zip b/assets/python-es-lecciones5.zip index 9019709a74..8660e25608 100644 Binary files a/assets/python-es-lecciones5.zip and b/assets/python-es-lecciones5.zip differ diff --git a/assets/python-es-lecciones6.zip b/assets/python-es-lecciones6.zip index be242f6e54..5c45a5efcd 100644 Binary files a/assets/python-es-lecciones6.zip and b/assets/python-es-lecciones6.zip differ diff --git a/assets/python-lessons5.zip b/assets/python-lessons5.zip index 3b9fe21b53..9402d8ea15 100644 Binary files a/assets/python-lessons5.zip and b/assets/python-lessons5.zip differ diff --git a/assets/python-lessons6.zip b/assets/python-lessons6.zip index c36ece62c0..af0e38a8cf 100644 Binary files a/assets/python-lessons6.zip and b/assets/python-lessons6.zip differ diff --git a/en/lessons/cleaning-ocrd-text-with-regular-expressions.md b/en/lessons/cleaning-ocrd-text-with-regular-expressions.md index 58196ab149..9e49f89e4f 100755 --- a/en/lessons/cleaning-ocrd-text-with-regular-expressions.md +++ b/en/lessons/cleaning-ocrd-text-with-regular-expressions.md @@ -423,7 +423,7 @@ bitty step at a time. "PDF Miner Module" [Patterns App]: http://krillapps.com/patterns/ "Patterns App for RegEx Experimentation" - [cheat sheet]: http://www.addedbytes.com/cheat-sheets/regular-expressions-cheat-sheet/ + [cheat sheet]: https://cheatography.com/davechild/cheat-sheets/regular-expressions/ "Reg Ex Cheat Sheet" [another tester tool]: http://www.pythonregex.com/ "Python Regex Tester" diff --git a/en/lessons/creating-and-viewing-html-files-with-python.md b/en/lessons/creating-and-viewing-html-files-with-python.md index 0029ac4e4b..e4dce5baab 100755 --- a/en/lessons/creating-and-viewing-html-files-with-python.md +++ b/en/lessons/creating-and-viewing-html-files-with-python.md @@ -86,7 +86,7 @@ three quotation marks (see below). ``` python # write-html.py -f = open('helloworld.html','wb') +f = open('helloworld.html','w') message = """ @@ -136,7 +136,7 @@ want something inside the directory (rather than the directory itself). # write-html-2-mac.py import webbrowser -f = open('helloworld.html','wb') +f = open('helloworld.html','w') message = """ @@ -161,7 +161,7 @@ filename path correctly. import webbrowser -f = open('helloworld.html','wb') +f = open('helloworld.html','w') message = """ diff --git a/es/lecciones/crear-y-ver-archivos-html-con-python.md b/es/lecciones/crear-y-ver-archivos-html-con-python.md index 365d19d844..6ce8ef8496 100644 --- a/es/lecciones/crear-y-ver-archivos-html-con-python.md +++ b/es/lecciones/crear-y-ver-archivos-html-con-python.md @@ -65,7 +65,7 @@ Normalmente un archivo HTML comienza con una [declaración doctype][]. Viste est ``` python # escribe-html.py -f = open('holamundo.html','wb') +f = open('holamundo.html','w') mensaje = """ @@ -96,7 +96,7 @@ Puedes entonces copiar y pegar la localización del archivo enlistado después d # escribe-html-2-mac.py import webbrowser -f = open('holamundo.html','wb') +f = open('holamundo.html','w') mensaje = """ @@ -120,7 +120,7 @@ Si recibes un error de "File not found" no has cambiado la ruta de nombre de arc import webbrowser -f = open('holamundo.html','wb') +f = open('holamundo.html','w') mensaje = """