Source Code:
(back to article)
import urllib.parse string = 'value1' encoded = urllib.parse.quote(string) print(encoded)
Result:
Report an issue