I am using API documentation with the following snippet:
r = requests.get("%slogin?username=%s&password=%s"
% (BASEURL, username, password))
What is the % symbol doing here? I have never passed this into .get before and I am not sure what it is doing.