The readings for Tuesday, October 06 are:
Once you have completed these readings, please answer the following questions:
What is the difference between a list and a dict? When would we prefer one over the other?
Write a Python function, digits_to_text, that converts any digits (ie. 0 - 9) in a string to the corresponding English word:
def digits_to_text(text):
''' Converts any digits in text to words '''
# TODO: Implement function
>>> digits_to_text('A B C 1 2 3')
A B C one two three
If you have any questions, comments, or concerns regarding the course, please provide your feedback here.
To submit your response, please edit the reading06/README.md file in your Bitbucket repository.