python如何限制数字范围_python – 如何找到数字范围

我在text.txt文件中有一个数字列表.

2.50

2.56

2.81

2.86

2.84

3.21

3.47

2.91

2.96

3.11

2.83

2.89

2.94

2.94

3.34

3.44

2.94

2.96

3.04

3.01

2.85

3.05

3.10

我想收集每组数量的范围.喜欢一个范围内的多少.

2.5-2.7

2.7-2.9

2.9-3.1

3.1-3.3

3.3-3.5

我试过这个.

from __future__ import division

from math import *

from numpy import *

from string import*

infile = open('text1.txt', 'r')

text = infile.read().split('\n')

infile.close()

text.remove('')

numbers = []

for i in text:

count = 0

if (numbers[i] > 2.49) and (numbers[i] < 2.59):

count += 1

print("Numb

你可能感兴趣的:(python如何限制数字范围)