Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified assets/python-es-lecciones5.zip
Binary file not shown.
Binary file modified assets/python-es-lecciones6.zip
Binary file not shown.
Binary file modified assets/python-lessons5.zip
Binary file not shown.
Binary file modified assets/python-lessons6.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion en/lessons/cleaning-ocrd-text-with-regular-expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions en/lessons/creating-and-viewing-html-files-with-python.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ three quotation marks (see below).
``` python
# write-html.py

f = open('helloworld.html','wb')
f = open('helloworld.html','w')

message = """<html>
<head></head>
Expand Down Expand Up @@ -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 = """<html>
<head></head>
Expand All @@ -161,7 +161,7 @@ filename path correctly.

import webbrowser

f = open('helloworld.html','wb')
f = open('helloworld.html','w')

message = """<html>
<head></head>
Expand Down
6 changes: 3 additions & 3 deletions es/lecciones/crear-y-ver-archivos-html-con-python.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 = """<html>
<head></head>
Expand Down Expand Up @@ -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 = """<html>
<head></head>
Expand All @@ -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 = """<html>
<head></head>
Expand Down