2021-09-29 对列表元素从大到小排序用 sorted 函数

  • Post author:
  • Post category:其他


a, b, c = map(int, input().split())
L = sorted([a, b, c])
print(L)



版权声明:本文为lfj490205460原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。