19.5. Exercises¶
Below, we have provided buggy code. Add a try/except clause so the code runs without errors. If a blog post didn’t get any likes, a ‘Likes’ key should be added to that dictionary with a value of 0.
The code below assigns the 5th letter of each word in
food
to the new listfifth
. However, the code currently produces errors. Insert a try/except clause that will allow the code to run and produce of list of the 5th letter in each word. If the word is not long enough, it should not print anything out. Note: Thepass
statement is a null operation; nothing will happen when it executes.
19.5.1. Contributed Exercises¶
You have attempted of activities on this page