Python Forum
Using a variable to replace an integer? (Except it isn't working!)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Using a variable to replace an integer? (Except it isn't working!)
#2
You are using this wrong.
Surrounding it with single quotes makes it a string.

The original looks like:
WOEID_LOOKUP_URL = ("http://locdrop.query.yahoo.com/v1/public/yql?"
                   "q=select%20woeid%20from%20locdrop.placefinder%20"
"where%20text='{0}'")
so in order to assign this to url, it needs to be:
url = WOEID_LOOKUP_URL.format('freegeoip')
Output:
"http://locdrop.query.yahoo.com/v1/public/yql?q=select%20woeid%20from%20locdrop.placefinder%20where%20text='freegeoip'"
Now you've got a valid url!

this url may have changed, see: https://developer.yahoo.com/geo/placefinder/
Reply


Messages In This Thread
RE: Using a variable to replace an integer? (Except it isn't working!) - by Larz60+ - Jul-25-2017, 04:04 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  working directory if using windows path-variable chitarup 2 778 Nov-28-2023, 11:36 PM
Last Post: chitarup
  Working with Excel and Word, Several Questions Regarding Find and Replace Brandon_Pickert 4 1,626 Feb-11-2023, 03:59 PM
Last Post: Brandon_Pickert
  Factorial Code is not working when the given number is very long integer Raj_Kumar 2 2,342 Mar-31-2020, 06:40 PM
Last Post: deanhystad
  Why replace treats an integer value 999 as 999.0? new_to_python 10 4,487 Feb-16-2020, 01:49 PM
Last Post: new_to_python
  Mixed string,Integer input variable issue maderdash 2 2,791 Nov-06-2018, 09:46 AM
Last Post: snippsat
  replace html string with python variable ! evilcode1 4 6,255 Aug-30-2018, 03:14 PM
Last Post: snippsat
  Search & Replace - Newlines Added After Replace dj99 3 3,450 Jul-22-2018, 01:42 PM
Last Post: buran
  string with integer variable within Andy1845c 9 4,991 Mar-12-2018, 10:28 PM
Last Post: Larz60+
  int(variable) not changing variable to an integer StoopidChicken 2 2,993 Jan-11-2018, 10:30 AM
Last Post: StoopidChicken

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020