Answers for "how to use for loop with float in python"

11

python range for float

>>> 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])
Posted by: Guest on March-17-2020
0

for loop with float python

import numpy as np 

for  i in np.arange(0.5, 1.5, 0.2):
   print(i, end =" ")
Posted by: Guest on June-04-2021

Code answers related to "how to use for loop with float in python"

Python Answers by Framework

Browse Popular Code Answers by Language