René's URL Explorer Experiment


Title: 7. Entrada y salida — documentación de Python - 3.14.6

Open Graph Title: 7. Entrada y salida

Description: Hay diferentes métodos de presentar la salida de un programa; los datos pueden ser impresos de una forma legible por humanos, o escritos a un archivo para uso futuro. Este capítulo discutirá alguna...

Open Graph Description: Hay diferentes métodos de presentar la salida de un programa; los datos pueden ser impresos de una forma legible por humanos, o escritos a un archivo para uso futuro. Este capítulo discutirá alguna...

Opengraph URL: https://docs.python.org/3/tutorial/inputoutput.html

direct link

Domain: docs.python.org

og:typewebsite
og:site_namePython documentation
og:image:width1146
og:image:height600
og:imagehttps://docs.python.org/3.14/es/_images/social_previews/summary_tutorial_inputoutput_6c1395e5.png
og:image:altHay diferentes métodos de presentar la salida de un programa; los datos pueden ser impresos de una forma legible por humanos, o escritos a un archivo para uso futuro. Este capítulo discutirá alguna...
twitter:cardsummary_large_image
theme-color#3776ab
readthedocs-addons-api-version1

Links:

https://www.python.org/
Tabla de contenidohttps://docs.python.org/es/3/contents.html
7. Entrada y salidahttps://docs.python.org/es/3/tutorial/inputoutput.html
7.1. Formateo elegante de la salidahttps://docs.python.org/es/3/tutorial/inputoutput.html#fancier-output-formatting
7.1.1. Formatear cadenas literaleshttps://docs.python.org/es/3/tutorial/inputoutput.html#formatted-string-literals
7.1.2. El método format() de cadenashttps://docs.python.org/es/3/tutorial/inputoutput.html#the-string-format-method
7.1.3. Formateo manual de cadenashttps://docs.python.org/es/3/tutorial/inputoutput.html#manual-string-formatting
7.1.4. Viejo formateo de cadenashttps://docs.python.org/es/3/tutorial/inputoutput.html#old-string-formatting
7.2. Leyendo y escribiendo archivoshttps://docs.python.org/es/3/tutorial/inputoutput.html#reading-and-writing-files
7.2.1. Métodos de los objetos Archivohttps://docs.python.org/es/3/tutorial/inputoutput.html#methods-of-file-objects
7.2.2. Guardar datos estructurados con jsonhttps://docs.python.org/es/3/tutorial/inputoutput.html#saving-structured-data-with-json
6. Móduloshttps://docs.python.org/es/3/tutorial/modules.html
8. Errores y excepcioneshttps://docs.python.org/es/3/tutorial/errors.html
Report a bughttps://docs.python.org/es/3/bugs.html
Improve this pagehttps://docs.python.org/es/3/improve-page-nojs.html
Show source https://github.com/python/cpython/blob/main/Doc/tutorial/inputoutput.rst?plain=1
Show translation sourcehttps://github.com/python/python-docs-es/blob/3.14/tutorial/inputoutput.po?plain=1
índicehttps://docs.python.org/es/3/genindex.html
móduloshttps://docs.python.org/es/3/py-modindex.html
siguientehttps://docs.python.org/es/3/tutorial/errors.html
anteriorhttps://docs.python.org/es/3/tutorial/modules.html
Pythonhttps://www.python.org/
3.14.6 Documentationhttps://docs.python.org/es/3/index.html
El tutorial de Pythonhttps://docs.python.org/es/3/tutorial/index.html
7. Entrada y salidahttps://docs.python.org/es/3/tutorial/inputoutput.html
https://docs.python.org/es/3/tutorial/inputoutput.html#input-and-output
https://docs.python.org/es/3/tutorial/inputoutput.html#fancier-output-formatting
print()https://docs.python.org/es/3/library/functions.html#print
write()https://docs.python.org/es/3/library/io.html#io.TextIOBase.write
literales de cadena formateadoshttps://docs.python.org/es/3/tutorial/inputoutput.html#tut-f-strings
str.format()https://docs.python.org/es/3/library/stdtypes.html#str.format
Format specification mini-languagehttps://docs.python.org/es/3/library/string.html#formatspec
repr()https://docs.python.org/es/3/library/functions.html#repr
str()https://docs.python.org/es/3/library/stdtypes.html#str
str()https://docs.python.org/es/3/library/stdtypes.html#str
repr()https://docs.python.org/es/3/library/functions.html#repr
SyntaxErrorhttps://docs.python.org/es/3/library/exceptions.html#SyntaxError
stringhttps://docs.python.org/es/3/library/string.html#module-string
string.Templatehttps://docs.python.org/es/3/library/string.html#string.Template
https://docs.python.org/es/3/tutorial/inputoutput.html#formatted-string-literals
Literales de cadena formateadoshttps://docs.python.org/es/3/reference/lexical_analysis.html#f-strings
ascii()https://docs.python.org/es/3/library/functions.html#ascii
str()https://docs.python.org/es/3/library/stdtypes.html#str
repr()https://docs.python.org/es/3/library/functions.html#repr
expresiones auto-documentadashttps://docs.python.org/es/3/whatsnew/3.8.html#bpo-36817-whatsnew
Format specification mini-languagehttps://docs.python.org/es/3/library/string.html#formatspec
https://docs.python.org/es/3/tutorial/inputoutput.html#the-string-format-method
str.format()https://docs.python.org/es/3/library/stdtypes.html#str.format
str.format()https://docs.python.org/es/3/library/stdtypes.html#str.format
str.format()https://docs.python.org/es/3/library/stdtypes.html#str.format
vars()https://docs.python.org/es/3/library/functions.html#vars
str.format()https://docs.python.org/es/3/library/stdtypes.html#str.format
Custom string formattinghttps://docs.python.org/es/3/library/string.html#string-formatting
https://docs.python.org/es/3/tutorial/inputoutput.html#manual-string-formatting
print()https://docs.python.org/es/3/library/functions.html#print
str.rjust()https://docs.python.org/es/3/library/stdtypes.html#str.rjust
str.ljust()https://docs.python.org/es/3/library/stdtypes.html#str.ljust
str.center()https://docs.python.org/es/3/library/stdtypes.html#str.center
str.zfill()https://docs.python.org/es/3/library/stdtypes.html#str.zfill
https://docs.python.org/es/3/tutorial/inputoutput.html#old-string-formatting
Formateo de cadenas al estilo *printf*https://docs.python.org/es/3/library/stdtypes.html#old-string-formatting
https://docs.python.org/es/3/tutorial/inputoutput.html#reading-and-writing-files
open()https://docs.python.org/es/3/library/functions.html#open
file objecthttps://docs.python.org/es/3/glossary.html#term-file-object
open()https://docs.python.org/es/3/library/functions.html#open
byteshttps://docs.python.org/es/3/library/stdtypes.html#bytes
withhttps://docs.python.org/es/3/reference/compound_stmts.html#with
tryhttps://docs.python.org/es/3/reference/compound_stmts.html#try
finallyhttps://docs.python.org/es/3/reference/compound_stmts.html#finally
withhttps://docs.python.org/es/3/reference/compound_stmts.html#with
withhttps://docs.python.org/es/3/reference/compound_stmts.html#with
https://docs.python.org/es/3/tutorial/inputoutput.html#methods-of-file-objects
isatty()https://docs.python.org/es/3/library/io.html#io.IOBase.isatty
truncate()https://docs.python.org/es/3/library/io.html#io.IOBase.truncate
jsonhttps://docs.python.org/es/3/library/json.html#module-json
https://docs.python.org/es/3/tutorial/inputoutput.html#saving-structured-data-with-json
read()https://docs.python.org/es/3/library/io.html#io.TextIOBase.read
int()https://docs.python.org/es/3/library/functions.html#int
JSON (JavaScript Object Notation)http://json.org
jsonhttps://docs.python.org/es/3/library/json.html#module-json
dumps()https://docs.python.org/es/3/library/json.html#json.dumps
dump()https://docs.python.org/es/3/library/json.html#json.dump
archivo de textohttps://docs.python.org/es/3/glossary.html#term-text-file
binary filehttps://docs.python.org/es/3/glossary.html#term-binary-file
text filehttps://docs.python.org/es/3/glossary.html#term-text-file
text filehttps://docs.python.org/es/3/glossary.html#term-text-file
jsonhttps://docs.python.org/es/3/library/json.html#module-json
picklehttps://docs.python.org/es/3/library/pickle.html#module-pickle
JSONhttps://docs.python.org/es/3/tutorial/inputoutput.html#tut-json
Tabla de contenidohttps://docs.python.org/es/3/contents.html
7. Entrada y salidahttps://docs.python.org/es/3/tutorial/inputoutput.html
7.1. Formateo elegante de la salidahttps://docs.python.org/es/3/tutorial/inputoutput.html#fancier-output-formatting
7.1.1. Formatear cadenas literaleshttps://docs.python.org/es/3/tutorial/inputoutput.html#formatted-string-literals
7.1.2. El método format() de cadenashttps://docs.python.org/es/3/tutorial/inputoutput.html#the-string-format-method
7.1.3. Formateo manual de cadenashttps://docs.python.org/es/3/tutorial/inputoutput.html#manual-string-formatting
7.1.4. Viejo formateo de cadenashttps://docs.python.org/es/3/tutorial/inputoutput.html#old-string-formatting
7.2. Leyendo y escribiendo archivoshttps://docs.python.org/es/3/tutorial/inputoutput.html#reading-and-writing-files
7.2.1. Métodos de los objetos Archivohttps://docs.python.org/es/3/tutorial/inputoutput.html#methods-of-file-objects
7.2.2. Guardar datos estructurados con jsonhttps://docs.python.org/es/3/tutorial/inputoutput.html#saving-structured-data-with-json
6. Móduloshttps://docs.python.org/es/3/tutorial/modules.html
8. Errores y excepcioneshttps://docs.python.org/es/3/tutorial/errors.html
Report a bughttps://docs.python.org/es/3/bugs.html
Improve this pagehttps://docs.python.org/es/3/improve-page-nojs.html
Show source https://github.com/python/cpython/blob/main/Doc/tutorial/inputoutput.rst?plain=1
Show translation sourcehttps://github.com/python/python-docs-es/blob/3.14/tutorial/inputoutput.po?plain=1
índicehttps://docs.python.org/es/3/genindex.html
móduloshttps://docs.python.org/es/3/py-modindex.html
siguientehttps://docs.python.org/es/3/tutorial/errors.html
anteriorhttps://docs.python.org/es/3/tutorial/modules.html
Pythonhttps://www.python.org/
3.14.6 Documentationhttps://docs.python.org/es/3/index.html
El tutorial de Pythonhttps://docs.python.org/es/3/tutorial/index.html
7. Entrada y salidahttps://docs.python.org/es/3/tutorial/inputoutput.html
Derechos de autorhttps://docs.python.org/es/3/copyright.html
Historia y Licenciahttps://docs.python.org/license.html
Por favor dona.https://www.python.org/psf/donations/
Encontraste un bughttps://docs.python.org/bugs.html
Sphinxhttps://www.sphinx-doc.org/

Viewport: width=device-width, initial-scale=1.0


URLs of crawlers that visited me.