hello Tutor,<div><br></div><div><div>
I need help on something very small...<br>
<br>
i am using urllib to write a query and what i want returned is &#39;FHI=128%2C128&amp;FLO=1%2C1&#39;<br>
<br>
i have tried the statement below and i have failed to get the above..<br>
<br>
x1,y1,x2,y2 = 1,1,128,128<br>
<br>
query = urllib.urlencode({&#39;FHI&#39;:&#39;x2,y2,&#39;, &#39;FLO&#39;:&#39;x1,y1&#39;})<br>
<br>
when that failed, i tried to use<br>
<br>
query =&#39;FHI=%(x2)d%2C%(y2)d&amp;FLO=%(x1)d%2C%(y1)d&#39; % vars()<br>
<br>
returned an error &quot;TypeError: not enough arguments for format string&quot;<br>
<br>
i also tied<br>
<br>
query =&#39;FHI=%d\%2C%d&amp;FLO=%d\%2C%d&#39; %(x1,x2,y1,y2)<br>
<br>
i got the error ValueError: unsupported format character &#39;C&#39; (0x43) at index 8<br>
<br>
Where could i be going wrong!<br>
<br>
Johnson</div></div>