位置:首页 > 软件操作教程 > 编程开发 > Python > 问题详情

python应用操作——四种翻转字符串/列表的方式

提问人:ylm发布时间:2020-09-29

翻转列表本身

In [49]: testList = [1, 3, 5]

In [50]: testList.reverse()

In [51]: testListOut[51]: [5, 3, 1]

在一个循环中翻转并迭代输出

In [52]: for element in reversed([1,3,5]):

    ...:     print(element)

    ...:     

5

3

1

一行代码翻转字符串

In [53]: "Test Python"[::-1]Out[53]: 'nohtyP tseT'

使用切片翻转列表

[1, 3, 5][::-1]

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部