# Find out more about frequency analysis here: https://en.wikipedia.org/wiki/Frequency_analysis
# Pride and Prejudice by Jane Austen
# Source: https://www.gutenberg.org/files/1342/1342-0.txt
import re
# load the story from a file
with open("story.txt") as f:
story = f.read().lower()
all_letters = re.findall("[a-z]", story)
letters = {}
for letter in all_letters:
if letter in letters:
letters[letter] += 1
else:
letters[letter] = 1
# sort letters alphabetically
alphabet = []
for letter in letters:
alphabet.append(letter)
alphabet.sort()
print("Letter|Frequency")
for letter in alphabet:
frequency = letters[letter]
bar = "="*(frequency // 10)
print("{:>6}|{:}".format(letter, bar))
# Challenges
# 1) Replace story.txt with your own story
# 2) Make all of the bars shorter
# 3) Change the table so that it shows the number as well as a bar chart
# Find out more about frequency analysis here: https://en.wikipedia.org/wiki/Frequency_analysis
# Pride and Prejudice by Jane Austen
# Source: https://www.gutenberg.org/files/1342/1342-0.txt
import re
# load the story from a file
with open("story.txt") as f:
story = f.read().lower()
all_letters = re.findall("[a-z]", story)
letters = {}
for letter in all_letters:
if letter in letters:
letters[letter] += 1
else:
letters[letter] = 1
# sort letters alphabetically
alphabet = []
for letter in letters:
alphabet.append(letter)
alphabet.sort()
print("Letter|Frequency")
for letter in alphabet:
frequency = letters[letter]
bar = "="*(frequency // 10)
print("{:>6}|{:}".format(letter, bar))
# Challenges
# 1) Replace story.txt with your own story
# 2) Make all of the bars shorter
# 3) Change the table so that it shows the number as well as a bar chart
Write each prediction of what the program will output.
You can also predict variable values e.g. a = 10
This code has been sabotaged with some common mistakes. Can you find and fix them all?
Click on the button to add 5 more errors to the code
You get more points for each python skill you use from the keywords section
Click on "tests" to see a description of which python skills to aim for and keep track of which ones you've already used