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)는 (-..
Python Learn the basics Quiz 56
Q> Your mission here is to create a function that gets a tuple and returns a tuple with 3 elements - the first, third and second to the last for the given array. (여기서 당신의 임무는 튜플을 얻고 주어진 배열의 첫 번째, 세 번째, 두 번째의 세 요소를 가진 튜플을 반환하는 함수를 만드는 것입니다.) Input: A tuple, at least 3 elements long. (최소한 3 요소 길이의 튜플.) Output: A tuple. (튜플.) Example: easy_unpack((1, 2, 3, 4, 5, 6, 7, 9)) == (1, 3, 7) easy_unpack((..