#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))
原文地址:https://www.cnblogs.com/sea-stream/p/9949535.html
时间: 2024-11-08 05:35:07