How do I remove %20 from url in my code?
elif 'launch' and 'open' in voice_note:
print('opening...')
start_url = "https://www."
end_url = ".com"
urllib.parse.unquote(voice_note)
play_sound_from_polly('Displaying the result, sir')
webbrowser.open(start_url + voice_note.replace('open', '').replace('%20', '') + end_url)
exit()
Here is a image of what it opens image