What does this program print?

from Requests
Python 3.14 beginner 2 min

What does this program print?

Python
from requests import Request

request = Request(
    "GET",
    "https://api.example.test/search",
    params=[("tag", "python"), ("tag", "http client")],
).prepare()
print(request.path_url)
Open in playground
Report an error