Question: code for python Function Name: noteTaker Parameters: notes ( string ) Returns: newNotes ( string ) Description: The Office of Disability Services here at university
code for python

Function Name: noteTaker Parameters: notes ( string ) Returns: newNotes ( string ) Description: The Office of Disability Services here at university offers accommodations for students with disabilities, including providing note-takers for students. Students in a class can volunteer to upload their notes to a portal, so that students who need them can access them. A note-taker should make an effort to ensure that their notes are clear, so that anyone reading them can understand them. Write a function that takes out extraneous punctuation within a group of sentences. The function should remove any and all punctuation within a sentence, but not its end punctuation. Note: You only need to account for these characters: .,?!@: Hint: The isupper() function can help you determine if a character is a capital letter! Every sentence after the first one will begin with a space and a capital letter. >>> notes = 'Li!sts are a cool datat,ype! They can hold a@ lot of infor:!matio n.' >>> noteTaker(notes) Lists are a cool datatype! They can hold a lot of information. >>> notes = 'CS1301,,,-- wh:at a c@!ool class!' >> noteTaker(notes) CS1301 -- what a cool class
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
