解题思路:通过调用index()函数来查找位置之后通过列表的特点进行交换

注意事项:函数参数间的参数的传递

参考代码:def shuru():
   a=list(map(int,input().split(' ')))
   chul(a)
def chul(b):#调用 chul函数的同时a的值传递参数给b
   m=max(b)
   n=min(b)
   b[b.index(m)],b[9]=b[9],m##参数的交换
   b[b.index(n)],b[0]=b[0],n
   shuchu(b)



def shuchu(c):
   for i in c:
       print(i, end=" ")
shuru()

 

0.0分

1 人评分

  评论区

  • «
  • »