Question
![Write a function that takes in a string as input and returns a
list of the unique characters used in the string. Punctuation should not be counted as
a unique character. For our purposes you may consider the following characters as
punctuation: .,;:?!"'- Your list should return all letters as lower case and sorted. So
for example if the input is '(Happy days are here again!' your function should return
the list ['a', 'd','e','g','h','i','n','p','r','s','y']](https://content.bartleby.com/qna-images/question/53b3af1e-c2fe-4b64-9d06-accae5ddaf7d/6bf74b1d-a06a-4efd-bda2-108e058980db/qup8sj_thumbnail.png)
Transcribed Image Text:Write a function that takes in a string as input and returns a
list of the unique characters used in the string. Punctuation should not be counted as
a unique character. For our purposes you may consider the following characters as
punctuation: .,;:?!"'- Your list should return all letters as lower case and sorted. So
for example if the input is '(Happy days are here again!' your function should return
the list ['a', 'd','e','g','h','i','n','p','r','s','y']
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 2 steps with 1 images
