我有一列网站,我想将所有“https://”替换为“www”。在我的数据框中。例如,给定输入:https://stackoverflow.comhttps://www.github.com我运行这个:data["columnname"]= data["columnname"].str.replace("https://", "www.", case = False) 输出是:www.stackoverflow.comwww.www.github.com但是输出应该是:www.stackoverflow.comwww.github.com有没有更好的方法来编写代码而不使www. 替换https://时?
添加回答
举报
0/150
提交
取消