Skip to content

Commit 50f259a

Browse files
committed
Url
1 parent a51bf3c commit 50f259a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1393,15 +1393,15 @@ from urllib.parse import quote, quote_plus, unquote, unquote_plus
13931393
```
13941394

13951395
### Encode
1396-
```
1396+
```text
13971397
>>> quote("Can't be in URL!")
13981398
'Can%27t%20be%20in%20URL%21'
13991399
>>> quote_plus("Can't be in URL!")
14001400
'Can%27t+be+in+URL%21'
14011401
```
14021402

14031403
### Decode
1404-
```
1404+
```text
14051405
>>> unquote('Can%27t+be+in+URL%21')
14061406
"Can't+be+in+URL!"'
14071407
>>> unquote_plus('Can%27t+be+in+URL%21')

0 commit comments

Comments
 (0)