利用切片操作,实现一个trim()函数,去除字符串首尾的空格,注意不要调用str的strip()方法:# 测试: if trim('hello ') != 'hello': print('测试失败!') elif trim(' hello') != 'hello': print('测试失败!') elif trim(' hello ') != 'hello&

NoSuchKey

猜你喜欢

转载自www.cnblogs.com/Tristan-Adams/p/9934362.html