“Python Range () flotante” Código de respuesta

rango de pitón para flotador

>>> import numpy as np
>>> np.arange(0.0, 1.0, 0.1)
array([ 0. ,  0.1,  0.2,  0.3,  0.4,  0.5,  0.6,  0.7,  0.8,  0.9])
rebellion

Python Range () flotante

# welcome to softhunt.net
# using a float number
for i in range(2.5):
	print(i)
print()

# using a float number
for i in range(15.75):
	print(i)
print()
Outrageous Ostrich

Respuestas similares a “Python Range () flotante”

Preguntas similares a “Python Range () flotante”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código