我必須替換列表中每個元組中的某些字符。我知道如何用一個基本字符串來完成它。替換列表中的字符
import string
s = 'This:is:awesome'
ss = s.replace(':', '/')
print ss
但是,我將如何去通過列表循環?
import string
finalPathList = []
pathList = ['List of 10+ file path names']
for lines in pathList:
ss = pathList.replace('\', '/')
print ss
finalPathList.append(ss)
所有我需要做的就是經過文件名的每個元組,以及「同"/"
小號的替換所有"\"
的。
任何幫助將不勝感激!
適用'replace'爲'lines',不'pathList'。 – Junuxx
他真的需要爲此導入字符串嗎? – Ofiris
作爲一個方面,你不能使用'「\」',使用'「\\」'或更好地使用原始字符串。 http://stackoverflow.com/questions/11168076/why-cant-i-end-a-raw-string-with-a –