Skip to content

Commit 90ac26e

Browse files
committed
Reestructurar repositorio
1 parent 60d2167 commit 90ac26e

File tree

8 files changed

+15
-86
lines changed

8 files changed

+15
-86
lines changed

LICENSE

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
MIT License
21

3-
Copyright (c) 2023 Raúl Vela
2+
# MIT License
3+
4+
## Copyright (c) 2023 RVS
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal

PIA/UT01/3_Practica/13_Cadena_Caracteres_Practica.py

Lines changed: 0 additions & 13 deletions
This file was deleted.

PIA/UT01/3_Practica/15_Intro_Listas.py

Lines changed: 0 additions & 25 deletions
This file was deleted.

PIA/UT01/3_Practica/Leer_archivo.py

Lines changed: 0 additions & 25 deletions
This file was deleted.
Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,25 @@
11
# Lista basica
2-
print("-------------")
3-
lista = [1, 2, 3, 4, 5]
42

5-
for num in lista:
6-
print(num, end=" ")
3+
lista = [1,2,3,4,5]
74

5+
for num in lista:
6+
print(num , end=" ")
7+
8+
print("")
89

910
# Lista Multidimensiones
1011

11-
lista = [[1, 2, 3, 4, 5], [61, 72, 83, 94, 101]]
12+
lista = [[1,2,3,4,5] , [61,72,83,94,101]]
1213

13-
print("\n1- Dimension")
14+
print("-------------")
15+
print("1- Dimension")
1416
for num in lista:
1517
print(num)
1618

19+
print("-------------")
1720
print("2- Dimension")
21+
1822
for fila in lista:
1923
for columna in fila:
20-
print(columna, end="")
21-
print()
24+
print(columna,end="")
25+
print()

PIA/UT01/3_Practica/Listas_ejemplos.py

Lines changed: 0 additions & 9 deletions
This file was deleted.

PIA/UT01/3_Practica/Numeros_aleatorios.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

PIA/UT04_NumPy_Panda/4_Practica/27_Libreria_numpy_practica.py

Whitespace-only changes.

0 commit comments

Comments
 (0)