Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

python: why does replace not work?

I wrote a quick script to remove the 'http://' substring from a list of website addresses saved on an excel column. The function replace though, doesn't work and I don't understand why.

from openpyxl import load_workbook

def rem(string):
    print string.startswith("http://")    #it yields "True"
    string.replace("http://","")
    print string, type(string)    #checking if it works (it doesn't though, the output is the same as the input)

wb = load_workbook("prova.xlsx")
ws = wb["Sheet"]

for n in xrange(2,698):
    c = "B"+str(n)
    print ws[c].value, type(ws[c].value)   #just to check value and type (unicode)
    rem(str(ws[c].value))    #transformed to string in order to make replace() work

wb.save("prova.xlsx")    #nothing has changed
like image 336
Pigna Avatar asked Dec 03 '25 12:12

Pigna


1 Answers

String.replace(substr)

does not happen in place, change it to:

string = string.replace("http://","")
like image 104
Nick stands with Ukraine Avatar answered Dec 05 '25 02:12

Nick stands with Ukraine



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!