I am trying to get this string as a result:
"&markers=97,64&markers=45,84"
From the Python code below:
markers = [(97,64),(45,84)]
result = ("&markers=%s" %x for x in markers)
return result
How do I do this as the below does not give me the actual string?