How do you replace all the occurrences of a certain character in a string?

后端 未结 3 1595
一向
一向 2020-12-03 16:32

I am reading a csv into a:

import csv
import collections
import pdb
import math
import urllib

def do_work():
  a=get_file(\'c:/pythonwork/cds/c         


        
3条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-03 17:02

    The problem is you're not doing anything with the result of replace. In Python strings are immutable so anything that manipulates a string returns a new string instead of modifying the original string.

    line[8] = line[8].replace(letter, "")
    

提交回复
热议问题