题解列表

筛选

绝对值排序-题解(Python代码)

摘要:用sorted()函数将绝对值从大到小排序,返回一个排序后的新列表 ```python import math while True: lit=list(map(int,input()……