In this Bite we'd like you to loop over the characters in the large block of text (the most important text for any Python programmer: The Zen of Python!)
Within this loop you'll perform the following actions:
Hint: Try converting the block of text to a list first to make working with the characters simpler.
Tip: If you're struggling, work on one step at a time and expand on your code slowly. Don't try and tackle every requirement right away.
Bonus: if you already have some Python under your belt, try to use re and try to solve it without a for loop :)