# Intro to Python # Check List - [ ] Python, - [ ] Historia [video](https://www.youtube.com/watch?v=v-Akcj-Xjhs) - [ ] características - [ ] Documentación - [ ] PEPs - [ ] PEP 20 - El Zen de Python - [ ] PEP 8 - Style Guide for Python Code - [ ] Naming - [ ] Pypi - [ ] Intro a Python - [ ] Comentarios - [ ] Tipos de datos - [ ] Colecciones - [ ] Operadores - [ ] Estructuras - [ ] Secuencial - [ ] Condicional - [ ] Ciclos - [ ] Funciones - [ ] Classes - [ ] Formateo de texto - [ ] One liners - [ ] list comprehension - [ ] dict comprehension ## Docs - Python Documentacion Oficial: https://python.org - Palabras claves o reservadas: https://docs.python.org/es/3/reference/lexical_analysis.html#keywords - Funciones integradas: https://docs.python.org/es/3/library/functions.html - https://docs.python.org/es/3/library/functions.html#built-in-funcs - Librerias standard: https://docs.python.org/3/library/index.html ## Métodos - de string: https://docs.python.org/3/library/stdtypes.html#string-methods - de listas: https://docs.python.org/es/3/tutorial/datastructures.html#more-on-lists - de diccionarios: https://docs.python.org/3/library/stdtypes.html?highlight=dict%20method#mapping-types-dict ## Formateando texto - Format String: https://docs.python.org/es/3/tutorial/inputoutput.html#fancier-output-formatting 1. Método: str.format(): https://docs.python.org/es/3/library/string.html#format-string-syntax 2. Literales de cadena formateados: f-strings: https://docs.python.org/es/3/tutorial/inputoutput.html#formatted-string-literals. 3. Viejo formateo de cadenas: %: https://docs.python.org/es/3/tutorial/inputoutput.html#old-string-formatting # Intro - Enlaces - [Palabras reservadas](https://docs.python.org/es/3/reference/lexical_analysis.html#keywords) - [Funciones integradas](https://docs.python.org/es/3.9/library/functions.html) - [Librerías standard](https://docs.python.org/3/library/index.html)
Intro to Python
Check List
Docs
Métodos
Formateando texto
Intro - Enlaces