Ryan Kessler

Results 1 issues of Ryan Kessler

Type: Bug from stats import count_words, char_frequency def get_book_text(path): with open(path) as f: file_contents = f.read() return file_contents def main(): path = "books/frankenstein.txt" # relative path text = get_book_text(path) count_words(text)...

python