码迷,mamicode.com
首页 > 编程语言 > 详细

python 元组元素反转

时间:2018-11-13 00:04:51      阅读:409      评论:0      收藏:0      [点我收藏+]

标签:eve   反转   tuple   python   class   span   reverse   source   create   

 

#create a tuple
x = ("w3resource")
# Reversed the tuple
y = reversed(x)
print(tuple(y))
#create another tuple
x = (5, 10, 15, 20)
# Reversed the tuple
y = reversed(x)
print(tuple(y))

 

python 元组元素反转

标签:eve   反转   tuple   python   class   span   reverse   source   create   

原文地址:https://www.cnblogs.com/sea-stream/p/9949535.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!