#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 元组元素反转
原文:https://www.cnblogs.com/sea-stream/p/9949535.html