I am trying to add user input using the raw_input function to string url_orig. I am attempting to replace the spaces with +'s to make a 'google search'. the replace function works fine in IDE but not when I excecute the program. Any help will be appreciated
url_orig = 'http://www.google.com/search?hl=en&q='
url_add1 = ''
s.replace(' ', '+')
print s