Hey what's up? We are a free website solely relying on advertisement revenue!
Please support us by disabling your adBlock for this site and good things will happen!
def angry_file_finder(filename):
mylist=[]
count=0
mtr=open(filename,"r")
mylist=mtr.readlines()
for it in mylist:
if "!" in it:
count+=1
print(count)
if count>0:
count=0
else:
mtr.close()
return False
mtr.close()
return True