简单的python程序

时间:2012-03-29 05:12:19

标签: python

提示用户输入文件,在本例中为'histogram.txt'。该程序获取文本文件中的每个分数,并从文件中的所有等级中生成直方图,组织它们,以便用户可以查看每个范围中有多少。我写了一个非常简单的代码:

filename = raw_input('Enter filename of grades: ')

histogram10 = 0
histogram9 = 0
histogram8 = 0
histogram7 = 0
histogram6 = 0
histogram5 = 0
histogram4 = 0
histogram3 = 0
histogram2 = 0
histogram1 = 0
histogram0 = 0

for score in open(filename):
    if score >= 100:
        histogram10 = histogram10 + 1
    elif score >= 90: 
        histogram9 = histogram9 + 1
    elif score >= 80:
        histogram8 = histogram8 + 1
    elif score >= 70:
        histogram7 = histogram7 + 1
    elif score >= 60:
        histogram6 = histogram6 + 1
    elif score >= 50:
        histogram5 = histogram5 + 1
    elif score >= 40:
        histogram4 = histogram4 + 1
    elif score >= 30:
        histogram3 = histogram3 + 1
    elif score >= 20:
        histogram2 = histogram2 + 1
    elif score >= 10:
        histogram1 = histogram1 + 1
    elif score >= 0:
        histogram0 = histogram0 + 1

print    
print 'Grade Distribution'
print '------------------'
print '100     :',('*' * histogram10)
print '90 - 99 :',('*' * histogram9)
print '80 - 89 :',('*' * histogram8)
print '70 - 79 :',('*' * histogram7)
print '60 - 69 :',('*' * histogram6)
print '50 - 59 :',('*' * histogram5)
print '40 - 49 :',('*' * histogram4)
print '30 - 39 :',('*' * histogram3)
print '20 - 29 :',('*' * histogram2)
print '10 - 19 :',('*' * histogram1)
print '00 - 09 :',('*' * histogram0)

然而,每当我运行该程序时,所有二十个等级都被记录到> = 100 像这样:

100    : ********************
90-99  : 
80-89  : 

等。 ...如何使程序将星星放在正确的位置?

2 个答案:

答案 0 :(得分:4)

从文件读取的数据是一个字符串。首先将其传递给int()

将其转换为整数
>>> int('25')
25

答案 1 :(得分:2)

在比较之前,您需要将score转换为int。

score = int(score)  # convert to int
if score >= 100:
    histogram10 = histogram10 + 1
# other cases

如果输入文件中有空行,则必须在转换为int之前添加必要的检查。另外,您可以轻松使用列表而不是十个不同的变量。