You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

py-01-lambda.py 111 B

123456
  1. a = [42, 23, -17, 11, -8, 15, -38, 23, 18, -1]
  2. # sort by absolute value
  3. a.sort(key=lambda x: abs(x))
  4. print(a)