-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a10ce50
commit 0faa1c1
Showing
5 changed files
with
103 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
title: Introducción rápida | ||
subtitle: Python, en menos de 1 minuto | ||
tutorial: python-101 | ||
index: 0 | ||
--- | ||
|
||
## ¿Qué es Python? | ||
|
||
Python es un lenguaje de programación muy fácil de aprender y usar, perfecto para principiantes. Es como darle instrucciones a una computadora usando palabras simples. Con Python, puedes crear juegos, aplicaciones y muchas cosas divertidas. | ||
|
||
Aquí tienes un ejemplo sencillo de un programa en Python que pide tu nombre y te saluda: | ||
|
||
```run-pyprez | ||
# Pide tu nombre | ||
nombre = input("¿Cómo te llamas? ") | ||
# Te saluda | ||
print("¡Hola, " + nombre + "!") | ||
``` | ||
|
||
Este código le pregunta a la computadora tu nombre y luego te saluda. ¡Sigue leyendo para descubrir más sobre lo que puedes hacer con Python! | ||
|
6 changes: 3 additions & 3 deletions
6
_tutoriales/python-101/que_es_python.md → _tutoriales/python-101/01_historia.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters