Programming Articles - Page 1098 of 3363

Python – Consecutive Division in List

AmitDiwan
Updated on 04-Sep-2021 11:11:48

260 Views

When it is required to find the consecutive division in a list, a method is defined that iterates over the elements of the list and uses the ‘/’ operator to determine the result.Below is a demonstration of the same −Example Live Demodef consec_division(my_list):    my_result = my_list[0]    for idx in range(1, len(my_list)):       my_result /= my_list[idx]    return my_result my_list = [2200, 500, 100, 50, 20, 5] print("The list is :") print(my_list) my_result = consec_division(my_list) print("The result is :") print(my_result)OutputThe list is : [2200, 500, 100, 50, 20, 5] The result is ... Read More

Python – Filter immutable rows representing Dictionary Keys from Matrix

AmitDiwan
Updated on 04-Sep-2021 11:10:11

181 Views

When it is required to filter immutable rows representing dictionary keys from a matrix, a list comprehension and the ‘isinstance’ method can be used.Below is a demonstration of the same −Example Live Demomy_list = [[24, 15, [32, 33, 12]], ["pyt", 8, (14, 54)], [{15:24}, 13, "fun"], [True, "cool"]] print("The list is :") print(my_list) my_result = [row for row in my_list if all(isinstance(element, int) or isinstance(element, bool) or isinstance(element, float) or isinstance(element, tuple) or isinstance(element, str) for element in row)] print("The result is :") print(my_result)OutputThe list is : [[24, 15, [32, 33, 12]], ['pyt', 8, (14, 54)], [{15: 24}, ... Read More

Python – Extract Particular data type rows

AmitDiwan
Updated on 04-Sep-2021 11:09:15

383 Views

When it is required to extract particular data type rows, the list comprehension, the ‘isinstance’ method, and the ‘all’ operator are used.Below is a demonstration of the same −Example Live Demomy_list = [[14, 35, "Will"], [12, 26, 17], ["p", "y", "t"], [29, 40, 21]] print("The list is :") print(my_list) my_data_type = int my_result = [row for row in my_list if all(isinstance(element, my_data_type) for element in row)] print("The result is :") print(my_result)OutputThe list is : [[14, 35, 'Will'], [12, 26, 17], ['p', 'y', 't'], [29, 40, 21]] The result is : [[12, 26, 17], [29, 40, 21]]ExplanationA list ... Read More

Python – Group Consecutive elements by Sign

AmitDiwan
Updated on 04-Sep-2021 11:07:44

329 Views

When it is required to group consecutive elements by sign, the ‘^’ operator and the simple iteration along with ‘enumerate’ is used.Below is a demonstration of the same −Example Live Demomy_list = [15, -33, 12, 64, 36, -12, -31, -17, -49, 12, 43, 30, -23, -35, 53] print("The list is :") print(my_list) my_result = [[]] for (index, element) in enumerate(my_list):    if element ^ my_list[index - 1] < 0:       my_result.append([element])    else:       my_result[-1].append(element) print("The result is :") print(my_result)OutputThe list is : [15, -33, 12, 64, 36, -12, -31, -17, -49, 12, ... Read More

Python – K middle elements

AmitDiwan
Updated on 04-Sep-2021 11:02:24

990 Views

When it is required to determine K middle elements, the ‘//’ operator and list slicing is used.Below is a demonstration of the same −Example Live Demomy_list = [34, 56, 12, 67, 88, 99, 0, 1, 21, 11] print("The list is : ") print(my_list) K = 5 print("The value of K is ") print(K) beg_indx = (len(my_list) // 2) - (K // 2) end_indx = (len(my_list) // 2) + (K // 2) my_result = my_list[beg_indx: end_indx + 1] print("The result is : " ) print(my_result)OutputThe list is : [34, 56, 12, 67, 88, 99, 0, 1, 21, ... Read More

Python – Filter Sorted Rows

AmitDiwan
Updated on 04-Sep-2021 11:01:30

431 Views

When it is required to filter sorted rows, a list comprehension and the ‘sorted’ and ‘list’ methods are used.Below is a demonstration of the same −Example Live Demomy_list = [[99, 6, 75, 10], [1, 75, 2, 4, 99], [75, 15, 99, 2], [1, 4, 15, 99]] print("The list is :") print(my_list) my_result = [sub for sub in my_list if sub == list(sorted(sub)) or sub == list(sorted(sub, reverse=True))] print("The resultant list is :") print(my_result) OutputThe list is : [[99, 6, 75, 10], [1, 75, 2, 4, 99], [75, 15, 99, 2], [1, 4, 15, 99]] The resultant list ... Read More

Python – Sort row by K multiples

AmitDiwan
Updated on 04-Sep-2021 11:00:24

169 Views

When it is required to sort a row by multiples of K, a method is defined that uses list comprehension and the modulus operator.Below is a demonstration of the same −Example Live Demodef multiple_sort_val(row):    return len([ele for ele in row if ele % K == 0]) my_list = [[11, 44, 7, 11], [7, 5, 44, 11], [11, 6, 35, 44], [92, 92, 5]] print("The list is :") print(my_list) K = 11 print("The value for K is ") print(K) my_list.sort(key=multiple_sort_val) print("The resultant list is :") print(my_list)OutputThe list is : [[11, 44, 7, 11], [7, 5, 44, ... Read More

Python – Trim tuples by K

AmitDiwan
Updated on 04-Sep-2021 10:59:15

214 Views

When it is required to trim tuples based on a K value, a simple iteration and the ‘append’ method is used.Below is a demonstration of the same −Example Live Demomy_list = [(44, 3, 68, 11, 5), (68, 44, 9, 5, 8), (8, 11, 2, 68, 5), (44, 68, 2, 5, 7)] print("The list is :") print(my_list) K = 1 print("The value for K is ") print(K) my_result = [] for element in my_list:    list_length = len(element)    my_result.append(tuple(list(element)[K: list_length - K])) print("The resultant list is :") print(my_result)OutputThe list is : [(44, 3, 68, 11, 5), ... Read More

Python – Sort by range inclusion

AmitDiwan
Updated on 04-Sep-2021 10:57:59

519 Views

When it is required to sort the list based on range, the ‘abs’ method, the ‘sum’ method and the list comprehension are used using a function.Below is a demonstration of the same −Example Live Demodef sum_range_incl(my_row):    return sum([abs(element [1] - element [0]) for element in my_row if element [0] > i and element [0] < j and element [1] > i and element [1] < j]) my_list = [[(12, 4), (55, 10), (11, 16)], [(42, 14)], [(2, 5), (2, 28), (9, 16)], [(12, 6), (6, 13)]] print("The list is :") print(my_list) i, j = 2, 15 ... Read More

Python – Maximum in Row Range

AmitDiwan
Updated on 04-Sep-2021 10:56:34

307 Views

When it is required to find the maximum value in a row range, a simple iteration and the ‘max’ method is used.Below is a demonstration of the same −Example Live Demomy_list = [[11, 35, 6], [9, 11, 3], [35, 4, 2], [8, 15, 35], [5, 9, 18], [5, 14, 2]] print("The list is :") print(my_list) i, j = 2, 4 print("The values for integers are ") print(i, j) my_result = 0 for index in range(i, j):    my_result = max(max(my_list[index]), my_result) print("The result is :") print(my_result)OutputThe list is : [[11, 35, 6], [9, 11, 3], [35, ... Read More

Advertisements