I have a string like x = "http://query.yahooapis.com/v1/public/yql?q=select%20owner%2Curls%20from%20flickr.photos.info%20where%20photo_id%3D'%s'&format=json"
If I do x % 10
that fails as there are %20f
etc which are being treated as format strings, so I have to do a string conactination. How can I use normal string replacements here.?