Exemplo n.º 1
0
def main():

	summary = {}

	filenames = open_several_files(files)

	for filename in filenames:
		text = read_file(filename)
		count = word_counter(text)
		genderedwords = both_genders(text)

		# store the report in the dictionary for each hint: add keys and nested dictionsaries
	pass
Exemplo n.º 2
0
def test_printing_both_genders_dict(clean_text):
    clean_text = remove_punc_html(text)
    return both_genders(clean_text)