我在上接过了python tutorials。 下面的法典中所有内容都相当明确,其数量是个性。 只有一线主人能理解的一节才算出一个名单,乘以120。 任何人都可以在便衣厅解释这一目的。
def display(i):
if i == 10: return LF
if i == 13: return CR
if i == 32: return SPACE
return chr(i)
infile = open( alice_in_wonderland.txt , r )
text = infile.read()
infile.close()
counts = 128 * [0]
for letter in text:
counts[ord(letter)] += 1
outfile = open( alice_counts.dat , w )
outfile.write("%-12s%s
" % ("Character", "Count"))
outfile.write("=================
")
for i in range(len(counts)):
if counts[i]:
outfile.write("%-12s%d
" % (display(i), counts[i]))
outfile.close()