'add variable in params Python3

hello how i can write the variable in params like this :

vip = input("Enter Your ID : ")

headers = {
    balbalabala
}

params = {
    'request': '{"id":"HERE","location":"USA"}',
    'sex': 'girl',

}

response = requests.get('https://example.com', params=params, headers=headers, verify=False)

how can add value of input VIP to HERE in params

Thank You



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source