我一直在学习Python,我想编写一个脚本来计算文本中的字符数并计算它们的相对频率。但首先,我想知道文件的长度。我的意图是,当脚本从一行到另一行计算所有字符时,它会打印当前行和总行数,所以我可以知道要花多少钱。
我执行了一个简单的for循环来计算行数,然后执行另一个for循环来计算字符并将它们放在字典中。但是,当我使用第一个for循环运行脚本时,它会提前停止。据我所知,它甚至不会进入第二个for循环。如果我删除这个循环,其余代码就可以了。造成这种情况的原因是什么?
请原谅我的代码。它很简陋,但我为此感到自豪。
我的代码:
import string
fname = input ('Enter a file name: ')
try:
fhand = open(fname)
except:
print ('Cannot open file.')
quit()
#Problematic bit. If this part is present, the script ends abruptly.
#filelength = 0
#for lines in fhand:
# filelength = filelength + 1
counts = dict()
currentline = 1
for line in fhand:
if len(line) == 0: continue
line = line.translate(str.maketrans('','',string.punctuation))
line = line.translate(str.maketrans('','',string.digits))
line = line.translate(str.maketrans('','',string.whitespace))
line = line.translate(str.maketrans('','',""" '"’‘“” """))
line = line.lower()
index = 0
while index < len(line):
if line[index] not in counts:
counts[line[index]] = 1
else:
counts[line[index]] += 1
index += 1
print('Currently at line: ', currentline, 'of', filelength)
currentline += 1
listtosort = list()
totalcount = 0
for (char, number) in list(counts.items()):
listtosort.append((number,char))
totalcount = totalcount + number
listtosort.sort(reverse=True)
for (number, char) in listtosort:
frequency = number/totalcount*100
print ('Character: %s, count: %d, Frequency: %g' % (char, number, frequency))
答案 0 :(得分:0)
看起来你的方式很好,但为了模拟你的问题,我下载并保存了一本Guttenberg教科书。这是一个unicode问题。解决它的两种方法。将其作为二进制文件打开或添加编码。正如它的文字,我会选择utf-8。
我还建议您对其进行不同的编码,下面是打开文件后关闭文件的基本结构。
filename = "GutenbergBook.txt"
try:
#fhand = open(filename, 'rb')
#open read only and utf-8 encoding
fhand = open(filename, 'r', encoding = 'utf-8')
except IOError:
print("couldn't find the file")
else:
try:
for line in fhand:
#put your code here
print(line)
except:
print("Error reading the file")
finally:
fhand.close()