摘要: 将字符串s="helloworld"反转为‘dlrowolleh’ 1.切片法最常用 s='helloworld' r=s[::-1] print('切片法',r) #结果 切片法 dlrowolleh 2.使用reduce from functools import reduce #匿名函数,冒号 阅读全文
posted @ 2021-06-22 19:51 python学习者0 阅读(545) 评论(0) 推荐(0) 编辑