方法一:pop()删除指定位置的字符
s1 = 'hello'
lst_s1 = list(s1) # 将字符串转为列表
lst_s1.pop(1) # 删除下标为1的字符
print(''.join(lst_s1)) # hllo
方法二:replace()方法
s1 = 'hello'
print(s1.replace('l','')) # heo 将l用空替换
方法三:re.sub()方法
import re
s3 = 'hello'
s = re.sub('[l]','',s3)
print(s) # heo