Is there a way in python to url encode list without variables names? for example
q=[‘with space1’, ‘with space2’]
into qescaped=[‘with%20space1’, ‘with%20space2’]
Is there a way in python to url encode list without variables names? for
Share
You can use urllib.quote together with map: