会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
python学习者0
博客园
首页
新随笔
联系
订阅
管理
2021年6月22日
Python基础教程:6种实现字符反转
摘要: 将字符串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)
编辑
公告