Skip to content

Commit 15c5b69

Browse files
committed
#1 - Python
1 parent ce88a51 commit 15c5b69

File tree

1 file changed

+2
-2
lines changed
  • Roadmap/01 - OPERADORES Y ESTRUCTURAS DE CONTROL/python

1 file changed

+2
-2
lines changed

Roadmap/01 - OPERADORES Y ESTRUCTURAS DE CONTROL/python/saezMD.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
z3= x / y
1111
z4= x % y
1212
z5= x ** y
13-
z6= x // y #Floor division
13+
z6= x // y #Floor division (Entera, sin decimales)
1414

1515
#Python Assignment Operators
1616
"""
@@ -109,4 +109,4 @@ def numConditions(startNUM: str, endNUM: str) -> str:
109109
print(i)
110110
return print("Done")
111111

112-
numConditions(10,55)
112+
numConditions(10,56)

0 commit comments

Comments
 (0)