mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
11 lines
196 B
Python
11 lines
196 B
Python
import requests
|
|
requests._append_params_to_url('http://www.rt-thread.com', {
|
|
'a': 1,
|
|
'b': 2
|
|
})
|
|
|
|
requests._append_params_to_url('http://www.rt-thread.com', {
|
|
'a': ' ',
|
|
'b': '%',
|
|
})
|