Codewars notes-删除字符串 首尾
Exercise:
Solution:
1.
def remove_char(s): s1 = list(s)#把字符串 拆分成列表 s1.remove(s1[0])#删除列表第一个元素 s1.pop()#删除列表最后一个元素
#把新生成的列表 s1 生成字符串 s2 = '' for i in s1: s2 += i return s2
2.
def remove_char(s): s = s[1 : -1]#读取字符串 除 首尾部分 return s