Replace typographic quotes with straight ones in a given string.
Constraints
Example
>>> normalize_quotes('He said, “Hello!”')
'He said, "Hello!"'
>>> normalize_quotes('It’s a test')
"It's a test"
>>> normalize_quotes('“Quoted” and ‘single’')
'"Quoted" and \'single\''
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints