You are on page 1of 3

Leccion 1 - Numeros

August 29, 2021

1 Clase 1 Python
1.1 Repaso Numeros
Repaso Variables Numericas Operaciones Matematicas

[1]: 3*990

[1]: 2970

[2]: 5-78

[2]: -73

[3]: 56*98

[3]: 5488

[4]: # Agregar Comentarios


3/2

[4]: 1.5

[6]: # Modulo
10%4

[6]: 2

[7]: 65**2

[7]: 4225

[8]: 65**6

[8]: 75418890625

[9]: 3-2+4*10

1
[9]: 41

[13]: (4+5*10)/2

[13]: 27.0

[16]: n = 35
n

[16]: 35

[17]: n+5

[17]: 40

[18]: n-n

[18]: 0

[19]: m = 10

[20]: n+m

[20]: 45

[21]: n*m

[21]: 350

[23]: n=m
n

[23]: 10

[25]: n = m + 10
n

[25]: 20

[27]: n = n + 25
n

[27]: 70

[28]: nota_1 = 4.3


nota_2 = 2.0

2
nota_final = (nota_1 + nota_2)/2
nota_final

[28]: 3.15

You might also like