反转 Python 中的元组
我们知道元组是 Python 中的数据结构,可以使用括号将不同数据类型的元素括起来。
在本教程中,我们将学习如何在 Python 中反转一个元组。
考虑以下示例以了解我们的目标-
Input - (21, 54, 1, 'apple', 'fruits', 11.7)
Output - (11.7, 'fruits', 'apple', 1, 54, 21)
解释 –
我们可以观察到,由于我们颠倒了元组的元素,最后出现的浮点数值出现在第一位。
让我们再看一个示例
Input - (20, 30, 50, 19.3, 41, 'comic books')
Output - ('comic books', 41, 19.3, 50, 30, 20)
说明 –
我们可以观察到,由于我们翻转了元组的元素,因此最后出现的字符串值会排在第一位。
我们将使用以下方法来翻转Python中的元组,
- 使用切片
- 使用reversed()方法
- 使用Python中的生成器
- 使用索引技术
所以,让我们从第一个开始:
使用切片
在Python中使用切片技术切分位于特定范围内的元素。
以下程序说明了它们如何使用。
#initializing the tuple
tuple_values = (1, 2, 'Python', 'Java', 23.4, 77, 10)
#displaying the original tuple
print("The original tuple is: ", tuple_values)
#using slicing
tuple_values = tuple_values[::-1]
#displaying the tuple
print("The reversed tuple is: ", tuple_values)
输出:
The original tuple is: (1, 2, 'Python', 'Java', 23.4, 77, 10)
The reversed tuple is: (10, 77, 23.4, 'Java', 'Python', 2, 1)
解释-
现在是时候来看看上面程序的解释了。
- 在步骤1中,我们用不同的值初始化了我们的元组。
- 之后,我们显示了我们的元组,然后使用切片以步长-1打印我们元组的元素,以逆序的方式。
- 最后,我们显示了反转后的元组。
在第二个程序中,我们将学习如何使用方法。
使用reversed()方法
考虑下面给出的程序:
#initializing the tuple
tuple_values = (1, 2, 'Python', 'Java', 23.4, 77, 10)
#displaying the original tuple
print("The original tuple is: ", tuple_values)
#using slicing
tuple_values = tuple(reversed(tuple_values))
#displaying the tuple
print("The reversed tuple is: ", tuple_values)
输出:
The original tuple is: (1, 2, 'Python', 'Java', 23.4, 77, 10)
The reversed tuple is: (10, 77, 23.4, 'Java', 'Python', 2, 1)
解释-
让我们了解一下上面程序中发生了什么:
- 在步骤1中,我们用不同的值初始化了我们的元组。
- 然后,我们显示了我们的元组,并使用 reversed() 将元组的元素以相反的顺序打印出来。
- 最后,我们显示了反转的元组。
在第三个程序中,我们将看到如何使用生成器来实现相同的功能。
在Python中使用生成器
下面的程序演示了如何在我们的Python程序中使用生成器。
#initializing the tuple
tuple_values = (1, 2, 'Python', 'Java', 23.4, 77, 10)
#displaying the original tuple
print("The original tuple is: ", tuple_values)
#creating a function
def reverse_tup(tuple_values):
for i in reversed(range(len(tuple_values))):
yield tuple_values[i]
#displaying the items in reverse order
for i in reverse_tup(tuple_values):
print("The element of a reversed tuple are: ", i)
输出:
The original tuple is: (1, 2, 'Python', 'Java', 23.4, 77, 10)
The elements of a reversed tuple are: 10
The elements of a reversed tuple are: 77
The elements of a reversed tuple are: 23.4
The elements of a reversed tuple are: Java
The elements of a reversed tuple are: Python
The elements of a reversed tuple are: 2
The elements of a reversed tuple are: 1
说明-
是时候看一下说明了,
- 在步骤1中,我们使用不同的值初始化了元组。
- 在此之后,我们显示了元组,然后创建了一个以元组作为参数的函数,使用生成器的概念帮助我们以相反的顺序获得元组。
- 最后,我们显示了反转后的元组。
最后,我们将看到如何使用索引技术来实现我们的目标。
使用索引技术
以下程序说明如何实现
#initializing the tuple
tuple_values=(1, 2, 'Python', 'Java', 23.4, 77, 10)
#displaying the original tuple
print("The original tuple is: ", tuple_values)
#displaying the items in reverse order
for i in range(len(tuple_values)):
print("The element of a reversed tuple is: ", tuple_values[-(i+1)])
输出:
The original tuple is: (1, 2, 'Python', 'Java', 23.4, 77, 10)
The element of a reversed tuple is: 10
The element of a reversed tuple is: 77
The element of a reversed tuple is: 23.4
The element of a reversed tuple is: Java
The element of a reversed tuple is: Python
The element of a reversed tuple is: 2
The element of a reversed tuple is: 1
说明-
现在是时候来看一下上述程序的解释了-
- 在步骤1中,我们使用不同的值初始化了我们的元组。
- 然后,我们展示了我们的元组,然后创建了一个函数,该函数接受我们元组的元素,使用for循环遍历元组,然后按照指定索引-1打印元素的顺序进行倒序。
- 最后,我们展示了倒序后的元组。
结论
在本教程中,我们讨论了在Python中反转元组的不同方法。