python的str对象中没有内置的反转函数
python中,字符换是不可变,更改字符串不会修改字符串,而是创建一个新的字符串。
如 a='123456789' 反转成 a='987654321'
第一种方法:使用字符串切片
>>> a='123456789'
>>> a = a[::-1]
'987654321'
第二种方法:使用reversed() 可读行好,但速度较慢
>>> ''.join(reversed('123456789'))
'987654321'
首页 >
python的str对象中没有内置的反转函数
python中,字符换是不可变,更改字符串不会修改字符串,而是创建一个新的字符串。
如 a='123456789' 反转成 a='987654321'
第一种方法:使用字符串切片
>>> a='123456789'
>>> a = a[::-1]
'987654321'
第二种方法:使用reversed() 可读行好,但速度较慢
>>> ''.join(reversed('123456789'))
'987654321'
如何在电脑上查找某一类型文件并批量移动 - python - 前端,micro python 移植 | 如何在电脑上查找某一类型文件并批量移动 - python - 前端,micro python 移植 ...
wireshark显示无捕获过滤器 - python - 前端,python毫秒转日期格式 | wireshark显示无捕获过滤器 - python - 前端,python毫秒转日期格式 ...
31岁大专文员看不到出路 - python - 前端,python改变列名称 | 31岁大专文员看不到出路 - python - 前端,python改变列名称 ...