How to print a range of float numbers in Python

2 Answers

0 votes
import numpy

for i in numpy.arange(0, 3.5, 0.5):
    print(i)
  
  
  
'''
run:
   
0.0
0.5
1.0
1.5
2.0
2.5
3.0

'''

 



answered May 12, 2019 by avibootz
0 votes
import numpy

for i in numpy.arange(-1.5, 3.5, 0.5):
    print(i)
  
  
  
'''
run:
   
-1.5
-1.0
-0.5
0.0
0.5
1.0
1.5
2.0
2.5
3.0

'''

 



answered May 12, 2019 by avibootz
...