使用python去除字符串中的某个字符
s = '12345/.txt' # 先将字符串转化为list tmp = list(s) # 删除字符串中的倒数第5位,在s中就是'/' tmp[-5] = '' # 使用join函数将tmp转化为字符串 s = ''.join(tmp) print(s)
使用python去除字符串中的某个字符
s = '12345/.txt' # 先将字符串转化为list tmp = list(s) # 删除字符串中的倒数第5位,在s中就是'/' tmp[-5] = '' # 使用join函数将tmp转化为字符串 s = ''.join(tmp) print(s)