Skip to content

Commit

Permalink
Cheat Lists
Browse files Browse the repository at this point in the history
  • Loading branch information
HX-DMLopez committed May 9, 2023
1 parent 56cfd6d commit 724da07
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
6 changes: 5 additions & 1 deletion 01 - Introducción a la Programación/Practica.py
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
print('Hola Mundo!222')
print('Hola Mundo!')
a = 20
while a > 0:
print(a)
a -= 1
4 changes: 4 additions & 0 deletions 01 - Introducción a la Programación/Practica.py.bak
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
print('Hola Mundo!')
a = 20
while a > 0:
print(a)
4 changes: 4 additions & 0 deletions 02 - Variables y Tipos de Datos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,10 @@ str(): construye una cadena a partir de una amplia variedad de tipos de datos, i
2
```

## Recursos adicionales

* [Cheat Lists] (https://intellipaat.com/blog/tutorial/python-tutorial/data-structures-with-python-cheat-sheet/?US)

## Homework

Completa la tarea descrita en el archivo [README](https://github.com/soyHenry/Python-Prep/blob/4aec1885136fdcff98899d2be13c8908b39f8b21/02%20-%20Variables%20y%20Tipos%20de%20Datos/Prep_Course_Homework_02.md)
Expand Down

0 comments on commit 724da07

Please sign in to comment.