'''
Created on Aug 30, 2016

@author: Susan
'''
#f = open("kjv10.txt")
f = open("stuff.txt")
st = f.read()
total = len(st)
zc = st.count('z')
print "total # chars = ", total
print "number of z's", zc
for ch in 'aeiou':
    print ch, st.count(ch)
