写一个包,里面实现一个模块'模块里面有个类,有两个实例方法,一个方法可以统计有个路径文件的英文个数,一个是统计空白字符个数
实现方法:新建一个目录:count下面新建一个文件__init__.pyclassCount(object):def__init__(self,file_path):self.file_path=file_pathdefcount_letter_num(self):letter_num=0try:withopen(self.file_path)asfp:forlineinfp:forletteri