Problem

7/7

方法

Theory Click to read/hide

使用元组的方法

使用元组的方法类似于使用列表的方法,除了改变元组的方法。由于元组的不变性,此类方法不可用。它们可以通过创建一个新的元组来应用。


元组排序示例
您可以使用 sorted() 函数轻松地对元组进行排序。 <表> <正文>
1个
2个
3个
4
一 = (5, 3, 2, 1, 4) 打印(排序(a))    # [1, 2, 3, 4, 5]  a = tuple(排序(a))  打印(一)    # (1, 2, 3, 4, 5) 
请注意,append()extend()remove() 等方法不适用于元组 和<代码>弹出()

Problem

您有一个包含整数的 my_tuple 元组。根据给定的元组,创建降序排序的元组 my_sorted_tuple

 

例子
<头> <日># <正文>

 

输入 输出
1 4 7 3 5 8 1 (8, 7, 5, 4, 3, 1)
1
my_tuple = tuple(list(map(int, input().split())))          
2
3
print(my_sorted_tuple)          

     

Program check result

To check the solution of the problem, you need to register or log in!