Python Learn the basics Quiz 57
Q> Let's try some sorting. (정렬을 해보죠.) Here is an array with the specific rules. (여기에 특정 규칙이있는 배열이 있습니다.) The array (a tuple) has various numbers. (배열 (튜플)에는 다양한 숫자가 있습니다.) You should sort it, but sort it by absolute value in ascending order. (그것을 정렬해야하지만, 오름차순으로 절대 값으로 정렬하십시오.) For example, the sequence (-20, -5, 10, 15) will be sorted like so: (-5, 10, 15, -20). (예를 들어, 순서 (-20, -5, 10, 15)는 (-..