The readings for Tuesday, September 29 are:
Once you have completed these readings, please answer the following questions:
What is the difference between a list and a string? What can you do with a list that you can't do with a string and vice versa?
Write a Python function, wsv_to_csv, that given a string s in whitespace separated format, the function returns a string in comma-separated-value format:
def wsv_to_csv(s):
''' Return comma-separated-value string '''
# TODO: Implement function
>>> wsv_to_csv('Shake down the thunder!')
Shake,down,the,thunder!
If you have any questions, comments, or concerns regarding the course, please provide your feedback here.
To submit your response, please edit the reading05/README.md file in your Bitbucket repository.