当需要访问Python元组的前后元素时,可以使用访问括号。
元组是不可变的数据类型。这意味着,一旦定义的值就不能通过访问它们的索引元素来更改。如果我们尝试更改元素,则会导致错误。它们很重要,因为它们确保只读访问。
以下是相同的演示-
my_tuple_1 = (87, 90, 31, 85,34, 56, 12, 5) print("The first tuple is :") print(my_tuple_1) my_result = (my_tuple_1[0], my_tuple_1[-1]) print("The front and rear elements of the tuple are : " ) print(my_result)输出结果
The first tuple is : (87, 90, 31, 85, 34, 56, 12, 5) The front and rear elements of the tuple are : (87, 5)
元组已定义,并显示在控制台上。
元组的第一个元素和最后一个元素分别使用索引和负索引访问。
这已分配给一个值。
它在控制台上显示为输出。