Hi there, I am somewhat new to Python and I am writing a test that passes in URLs. I want to have a loop that will pass in different parameters. I cannot get past the error "TypeError: float argument required, not str"
What am I doing wrong?
url3 = "http://standardsService/Standards.svc/Standards()?$filter=Authority%20eq%20'%s'&$inlinecount=allpages"
for state in ['Arkansas','Alaska']:
response3 = urllib2.urlopen(url3 % state)
print (response3.read())