“Python Floor Division” Código de respuesta

pitón

import math
x = 3.86356
math.floor(x)
#Returns: 3
math.ceil(x)
#Returns: 4
AlarmClockMan

Python Floor Division

# Floor division in Python 3
5 / 2 -> 2.5
5 // 2 -> 2
# flooring a number means returning the first integer smaller than value
# the first integer smaller than -2.5 is -3
-5 // 2 -> -3 
# int() truncates towards zero
int(-5 / 2) -> -2
Coder Cuttlefish

Respuestas similares a “Python Floor Division”

Preguntas similares a “Python Floor Division”

Más respuestas relacionadas con “Python Floor Division” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código