Description stringlengths 9 105 | Link stringlengths 45 135 | Code stringlengths 10 26.8k | Test_Case stringlengths 9 202 | Merge stringlengths 63 27k |
|---|---|---|---|---|
Python - Remove nested records from tuple | https://www.geeksforgeeks.org/python-remove-nested-records-from-tuple/ | # Python3 code to demonstrate working of
# Remove nested records
# initialize tuple
test_tup = (1, 5, 7, (4, 6), 10)
# printing original tuple
print("The original tuple : " + str(test_tup))
# Remove nested records
res = list(filter(lambda x: not isinstance(x, tuple), test_tup))
# printing result
print("Elements aft... |
#Output : The original tuple : (1, 5, 7, (4, 6), 10) | Python - Remove nested records from tuple
# Python3 code to demonstrate working of
# Remove nested records
# initialize tuple
test_tup = (1, 5, 7, (4, 6), 10)
# printing original tuple
print("The original tuple : " + str(test_tup))
# Remove nested records
res = list(filter(lambda x: not isinstance(x, tuple), test_... |
Python - Remove nested records from tuple | https://www.geeksforgeeks.org/python-remove-nested-records-from-tuple/ | # Python3 code to demonstrate working of
# Remove nested records
# initialize tuple
test_tup = (1, 5, 7, (4, 6), 10)
# printing original tuple
print("The original tuple : " + str(test_tup))
# Remove nested records
res = [x for x in test_tup if not isinstance(x, tuple)]
# printing result
print("Elements after remova... |
#Output : The original tuple : (1, 5, 7, (4, 6), 10) | Python - Remove nested records from tuple
# Python3 code to demonstrate working of
# Remove nested records
# initialize tuple
test_tup = (1, 5, 7, (4, 6), 10)
# printing original tuple
print("The original tuple : " + str(test_tup))
# Remove nested records
res = [x for x in test_tup if not isinstance(x, tuple)]
# ... |
Python - Remove nested records from tuple | https://www.geeksforgeeks.org/python-remove-nested-records-from-tuple/ | from functools import reduce
test_tup = (1, 5, 7, (4, 6), 10)
# printing original tuple
print("The original tuple : " + str(test_tup))
res = reduce(
lambda acc, x: acc + (x,) if not isinstance(x, tuple) else acc, test_tup, ()
)
print(res)
# This code is contributed by Jyothi pinjala. |
#Output : The original tuple : (1, 5, 7, (4, 6), 10) | Python - Remove nested records from tuple
from functools import reduce
test_tup = (1, 5, 7, (4, 6), 10)
# printing original tuple
print("The original tuple : " + str(test_tup))
res = reduce(
lambda acc, x: acc + (x,) if not isinstance(x, tuple) else acc, test_tup, ()
)
print(res)
# This code is contributed by Jy... |
Python - Remove nested records from tuple | https://www.geeksforgeeks.org/python-remove-nested-records-from-tuple/ | import itertools
test_tup = (1, 5, 7, (4, 6), 10)
print("The original tuple: " + str(test_tup))
res = tuple(
itertools.chain(*([x] if not isinstance(x, tuple) else x for x in test_tup))
)
print(res) |
#Output : The original tuple : (1, 5, 7, (4, 6), 10) | Python - Remove nested records from tuple
import itertools
test_tup = (1, 5, 7, (4, 6), 10)
print("The original tuple: " + str(test_tup))
res = tuple(
itertools.chain(*([x] if not isinstance(x, tuple) else x for x in test_tup))
)
print(res)
#Output : The original tuple : (1, 5, 7, (4, 6), 10)
[END] |
Python - Remove nested records from tuple | https://www.geeksforgeeks.org/python-remove-nested-records-from-tuple/ | def flatten_tuple(tup):
"""
Recursively flatten a tuple of any depth into a single tuple.
Args:
tup: A tuple to be flattened.
Returns:
A flattened tuple.
"""
result = []
for elem in tup:
if not isinstance(elem, tuple):
result.append(elem)
else:
... |
#Output : The original tuple : (1, 5, 7, (4, 6), 10) | Python - Remove nested records from tuple
def flatten_tuple(tup):
"""
Recursively flatten a tuple of any depth into a single tuple.
Args:
tup: A tuple to be flattened.
Returns:
A flattened tuple.
"""
result = []
for elem in tup:
if not isinstance(elem, tuple):
... |
Python - Elements Frequency in StringMixed Nested tuple | https://www.geeksforgeeks.org/python-elements-frequency-in-mixed-nested-tuple/ | # Python3 code to demonstrate working of
# Elements Frequency in Mixed Nested Tuple
# Using recursion + loop
# helper_fnc
def flatten(test_tuple):
for tup in test_tuple:
if isinstance(tup, tuple):
yield from flatten(tup)
else:
yield tup
# initializing tuple
test_tuple = (... |
#Output : The original tuple : (5, 6, (5, 6), 7, (8, 9), 9) | Python - Elements Frequency in StringMixed Nested tuple
# Python3 code to demonstrate working of
# Elements Frequency in Mixed Nested Tuple
# Using recursion + loop
# helper_fnc
def flatten(test_tuple):
for tup in test_tuple:
if isinstance(tup, tuple):
yield from flatten(tup)
else:
... |
Python - Elements Frequency in StringMixed Nested tuple | https://www.geeksforgeeks.org/python-elements-frequency-in-mixed-nested-tuple/ | # Python3 code to demonstrate working of
# Elements Frequency in Mixed Nested Tuple
# Using recursion + Counter()
from collections import Counter
# helper_fnc
def flatten(test_tuple):
for tup in test_tuple:
if isinstance(tup, tuple):
yield from flatten(tup)
else:
yield tup
... |
#Output : The original tuple : (5, 6, (5, 6), 7, (8, 9), 9) | Python - Elements Frequency in StringMixed Nested tuple
# Python3 code to demonstrate working of
# Elements Frequency in Mixed Nested Tuple
# Using recursion + Counter()
from collections import Counter
# helper_fnc
def flatten(test_tuple):
for tup in test_tuple:
if isinstance(tup, tuple):
yi... |
Python - Elements Frequency in StringMixed Nested tuple | https://www.geeksforgeeks.org/python-elements-frequency-in-mixed-nested-tuple/ | # Python3 code to demonstrate working of
# Elements Frequency in Mixed Nested Tuple
# Initializing tuple
test_tuple = (5, 6, (5, 6), 7, (8, 9), 9)
# Printing original tuple
print("The original tuple : " + str(test_tuple))
# Elements Frequency in Mixed Nested Tuple
x = []
for i in test_tuple:
if type(i) is tuple:... |
#Output : The original tuple : (5, 6, (5, 6), 7, (8, 9), 9) | Python - Elements Frequency in StringMixed Nested tuple
# Python3 code to demonstrate working of
# Elements Frequency in Mixed Nested Tuple
# Initializing tuple
test_tuple = (5, 6, (5, 6), 7, (8, 9), 9)
# Printing original tuple
print("The original tuple : " + str(test_tuple))
# Elements Frequency in Mixed Nested ... |
Python - Elements Frequency in StringMixed Nested tuple | https://www.geeksforgeeks.org/python-elements-frequency-in-mixed-nested-tuple/ | # Python3 code to demonstrate working of
# Elements Frequency in Mixed Nested Tuple
import operator as op
# Initializing tuple
test_tuple = (5, 6, (5, 6), 7, (8, 9), 9)
# Printing original tuple
print("The original tuple : " + str(test_tuple))
# Elements Frequency in Mixed Nested Tuple
x = []
for i in test_tuple:
... |
#Output : The original tuple : (5, 6, (5, 6), 7, (8, 9), 9) | Python - Elements Frequency in StringMixed Nested tuple
# Python3 code to demonstrate working of
# Elements Frequency in Mixed Nested Tuple
import operator as op
# Initializing tuple
test_tuple = (5, 6, (5, 6), 7, (8, 9), 9)
# Printing original tuple
print("The original tuple : " + str(test_tuple))
# Elements Freq... |
Python - Elements Frequency in StringMixed Nested tuple | https://www.geeksforgeeks.org/python-elements-frequency-in-mixed-nested-tuple/ | from collections import defaultdict
def count_elements(t):
freq = defaultdict(int)
for item in t:
if isinstance(item, int):
freq[item] += 1
elif isinstance(item, tuple):
sub_freq = count_elements(item)
for k, v in sub_freq.items():
freq[k] +=... |
#Output : The original tuple : (5, 6, (5, 6), 7, (8, 9), 9) | Python - Elements Frequency in StringMixed Nested tuple
from collections import defaultdict
def count_elements(t):
freq = defaultdict(int)
for item in t:
if isinstance(item, int):
freq[item] += 1
elif isinstance(item, tuple):
sub_freq = count_elements(item)
... |
Python - Elements Frequency in StringMixed Nested tuple | https://www.geeksforgeeks.org/python-elements-frequency-in-mixed-nested-tuple/ | def count_elements(t):
freq = {}
for item in t:
if isinstance(item, int):
if item not in freq:
freq[item] = 0
freq[item] += 1
elif isinstance(item, tuple):
for subitem in item:
if isinstance(subitem, int):
if... |
#Output : The original tuple : (5, 6, (5, 6), 7, (8, 9), 9) | Python - Elements Frequency in StringMixed Nested tuple
def count_elements(t):
freq = {}
for item in t:
if isinstance(item, int):
if item not in freq:
freq[item] = 0
freq[item] += 1
elif isinstance(item, tuple):
for subitem in item:
... |
Python Program to get unique elements in nested tuple | https://www.geeksforgeeks.org/python-how-to-get-unique-elements-in-nested-tuple/ | # Python3 code to demonstrate working of
# Unique elements in nested tuple
# Using nested loop + set()
# initialize list
test_list = [(3, 4, 5), (4, 5, 7), (1, 4)]
# printing original list
print("The original list : " + str(test_list))
# Unique elements in nested tuple
# Using nested loop + set()
res = []
temp = set... |
#Output : The original list : [(3, 4, 5), (4, 5, 7), (1, 4)] | Python Program to get unique elements in nested tuple
# Python3 code to demonstrate working of
# Unique elements in nested tuple
# Using nested loop + set()
# initialize list
test_list = [(3, 4, 5), (4, 5, 7), (1, 4)]
# printing original list
print("The original list : " + str(test_list))
# Unique elements in nested... |
Python Program to get unique elements in nested tuple | https://www.geeksforgeeks.org/python-how-to-get-unique-elements-in-nested-tuple/ | # Python3 code to demonstrate working of
# Unique elements in nested tuple
# Using from_iterable() + set()
from itertools import chain
# initialize list
test_list = [(3, 4, 5), (4, 5, 7), (1, 4)]
# printing original list
print("The original list : " + str(test_list))
# Unique elements in nested tuple
# Using from_it... |
#Output : The original list : [(3, 4, 5), (4, 5, 7), (1, 4)] | Python Program to get unique elements in nested tuple
# Python3 code to demonstrate working of
# Unique elements in nested tuple
# Using from_iterable() + set()
from itertools import chain
# initialize list
test_list = [(3, 4, 5), (4, 5, 7), (1, 4)]
# printing original list
print("The original list : " + str(test_lis... |
Python Program to get unique elements in nested tuple | https://www.geeksforgeeks.org/python-how-to-get-unique-elements-in-nested-tuple/ | # Python3 code to demonstrate working of
# Unique elements in nested tuple
# initialize list
test_list = [(3, 4, 5), (4, 5, 7), (1, 4)]
# printing original list
print("The original list : " + str(test_list))
# Unique elements in nested tuple
x = []
for i in test_list:
i = list(i)
x.extend(i)
res = list(set(x... |
#Output : The original list : [(3, 4, 5), (4, 5, 7), (1, 4)] | Python Program to get unique elements in nested tuple
# Python3 code to demonstrate working of
# Unique elements in nested tuple
# initialize list
test_list = [(3, 4, 5), (4, 5, 7), (1, 4)]
# printing original list
print("The original list : " + str(test_list))
# Unique elements in nested tuple
x = []
for i in test_... |
Python Program to get unique elements in nested tuple | https://www.geeksforgeeks.org/python-how-to-get-unique-elements-in-nested-tuple/ | # Python3 code to demonstrate working of
# Unique elements in nested tuple
from collections import Counter
# initialize list
test_list = [(3, 4, 5), (4, 5, 7), (1, 4)]
# printing original list
print("The original list : " + str(test_list))
# Unique elements in nested tuple
x = []
for i in test_list:
x.extend(lis... |
#Output : The original list : [(3, 4, 5), (4, 5, 7), (1, 4)] | Python Program to get unique elements in nested tuple
# Python3 code to demonstrate working of
# Unique elements in nested tuple
from collections import Counter
# initialize list
test_list = [(3, 4, 5), (4, 5, 7), (1, 4)]
# printing original list
print("The original list : " + str(test_list))
# Unique elements in ne... |
Python Program to get unique elements in nested tuple | https://www.geeksforgeeks.org/python-how-to-get-unique-elements-in-nested-tuple/ | # Python3 code to demonstrate working of
# Unique elements in nested tuple
import operator as op
# initialize list
test_list = [(3, 4, 5), (4, 5, 7), (1, 4)]
# printing original list
print("The original list : " + str(test_list))
# Unique elements in nested tuple
# Using nested loop + set()
res = []
temp = set()
fo... |
#Output : The original list : [(3, 4, 5), (4, 5, 7), (1, 4)] | Python Program to get unique elements in nested tuple
# Python3 code to demonstrate working of
# Unique elements in nested tuple
import operator as op
# initialize list
test_list = [(3, 4, 5), (4, 5, 7), (1, 4)]
# printing original list
print("The original list : " + str(test_list))
# Unique elements in nested tupl... |
Python Program to get unique elements in nested tuple | https://www.geeksforgeeks.org/python-how-to-get-unique-elements-in-nested-tuple/ | # Python3 code to demonstrate working of
# Unique elements in nested tuple
# initialize list
test_list = [(3, 4, 5), (4, 5, 7), (1, 4)]
# printing original list
print("The original list : " + str(test_list))
# Unique elements in nested tuple
# Using list comprehension and set conversion
res = sorted(set([x for inner... |
#Output : The original list : [(3, 4, 5), (4, 5, 7), (1, 4)] | Python Program to get unique elements in nested tuple
# Python3 code to demonstrate working of
# Unique elements in nested tuple
# initialize list
test_list = [(3, 4, 5), (4, 5, 7), (1, 4)]
# printing original list
print("The original list : " + str(test_list))
# Unique elements in nested tuple
# Using list comprehe... |
Python program to Concatenate tuples to nested tuples | https://www.geeksforgeeks.org/python-how-to-concatenate-tuples-to-nested-tuples/ | # Python3 code to demonstrate working of
# Concatenating tuples to nested tuples
# using + operator + ", " operator during initialization
# initialize tuples
test_tup1 = ((3, 4),)
test_tup2 = ((5, 6),)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(t... |
#Output : The original tuple 1 : ((3, 4), ) | Python program to Concatenate tuples to nested tuples
# Python3 code to demonstrate working of
# Concatenating tuples to nested tuples
# using + operator + ", " operator during initialization
# initialize tuples
test_tup1 = ((3, 4),)
test_tup2 = ((5, 6),)
# printing original tuples
print("The original tuple 1 : " + s... |
Python program to Concatenate tuples to nested tuples | https://www.geeksforgeeks.org/python-how-to-concatenate-tuples-to-nested-tuples/ | # Python3 code to demonstrate working of
# Concatenating tuples to nested tuples
# Using ", " operator during concatenation
# initialize tuples
test_tup1 = (3, 4)
test_tup2 = (5, 6)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(test_tup2))
# Concat... |
#Output : The original tuple 1 : ((3, 4), ) | Python program to Concatenate tuples to nested tuples
# Python3 code to demonstrate working of
# Concatenating tuples to nested tuples
# Using ", " operator during concatenation
# initialize tuples
test_tup1 = (3, 4)
test_tup2 = (5, 6)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print... |
Python program to Concatenate tuples to nested tuples | https://www.geeksforgeeks.org/python-how-to-concatenate-tuples-to-nested-tuples/ | # Python3 code to demonstrate working of
# Concatenating tuples to nested tuples
# using + operator + ", " operator during initialization
# initialize tuples
test_tup1 = ((3, 4),)
test_tup2 = ((5, 6),)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(t... |
#Output : The original tuple 1 : ((3, 4), ) | Python program to Concatenate tuples to nested tuples
# Python3 code to demonstrate working of
# Concatenating tuples to nested tuples
# using + operator + ", " operator during initialization
# initialize tuples
test_tup1 = ((3, 4),)
test_tup2 = ((5, 6),)
# printing original tuples
print("The original tuple 1 : " + s... |
Python program to Concatenate tuples to nested tuples | https://www.geeksforgeeks.org/python-how-to-concatenate-tuples-to-nested-tuples/ | import itertools
test_tup1 = ((3, 4),)
test_tup2 = ((5, 6),)
# using itertools.chain() to concatenate tuples to nested tuples
res = tuple(itertools.chain(test_tup1, test_tup2))
# printing result
print("Tuples after Concatenating : ", res) |
#Output : The original tuple 1 : ((3, 4), ) | Python program to Concatenate tuples to nested tuples
import itertools
test_tup1 = ((3, 4),)
test_tup2 = ((5, 6),)
# using itertools.chain() to concatenate tuples to nested tuples
res = tuple(itertools.chain(test_tup1, test_tup2))
# printing result
print("Tuples after Concatenating : ", res)
#Output : The origina... |
Python program to Concatenate tuples to nested tuples | https://www.geeksforgeeks.org/python-how-to-concatenate-tuples-to-nested-tuples/ | # Python3 code to demonstrate working of
# Concatenating tuples to nested tuples
# using functools.reduce() method
# import functools module
import functools
# initialize tuples
test_tup1 = ((3, 4),)
test_tup2 = ((5, 6),)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The origina... |
#Output : The original tuple 1 : ((3, 4), ) | Python program to Concatenate tuples to nested tuples
# Python3 code to demonstrate working of
# Concatenating tuples to nested tuples
# using functools.reduce() method
# import functools module
import functools
# initialize tuples
test_tup1 = ((3, 4),)
test_tup2 = ((5, 6),)
# printing original tuples
print("The ori... |
Python program to Concatenate tuples to nested tuples | https://www.geeksforgeeks.org/python-how-to-concatenate-tuples-to-nested-tuples/ | # Python3 code to demonstrate working of
# Concatenating tuples to nested tuples
# using extend() method of list class
# initialize tuples
test_tup1 = (3, 4)
test_tup2 = (5, 6)
# create an empty list
lst = []
# Concatenating tuples to nested tuples
# using extend() method of list class
lst.extend(test_tup1)
lst.exte... |
#Output : The original tuple 1 : ((3, 4), ) | Python program to Concatenate tuples to nested tuples
# Python3 code to demonstrate working of
# Concatenating tuples to nested tuples
# using extend() method of list class
# initialize tuples
test_tup1 = (3, 4)
test_tup2 = (5, 6)
# create an empty list
lst = []
# Concatenating tuples to nested tuples
# using extend... |
Python - Sort by Frequency of second element in Tuple list | https://www.geeksforgeeks.org/python-sort-by-frequency-of-second-element-in-tuple-list/ | # Python3 code to demonstrate working of
# Sort by Frequency of second element in Tuple List
# Using sorted() + loop + defaultdict() + lambda
from collections import defaultdict
# initializing list
test_list = [(6, 5), (2, 7), (2, 5), (8, 7), (9, 8), (3, 7)]
# printing original list
print("The original list is : " + ... |
#Output : The original list is : [(6, 5), (2, 7), (2, 5), (8, 7), (9, 8), (3, 7)] | Python - Sort by Frequency of second element in Tuple list
# Python3 code to demonstrate working of
# Sort by Frequency of second element in Tuple List
# Using sorted() + loop + defaultdict() + lambda
from collections import defaultdict
# initializing list
test_list = [(6, 5), (2, 7), (2, 5), (8, 7), (9, 8), (3, 7)]... |
Python - Sort by Frequency of second element in Tuple list | https://www.geeksforgeeks.org/python-sort-by-frequency-of-second-element-in-tuple-list/ | # Python3 code to demonstrate working of
# Sort by Frequency of second element in Tuple List
# Using Counter() + lambda + sorted()
from collections import Counter
# initializing list
test_list = [(6, 5), (2, 7), (2, 5), (8, 7), (9, 8), (3, 7)]
# printing original list
print("The original list is : " + str(test_list))... |
#Output : The original list is : [(6, 5), (2, 7), (2, 5), (8, 7), (9, 8), (3, 7)] | Python - Sort by Frequency of second element in Tuple list
# Python3 code to demonstrate working of
# Sort by Frequency of second element in Tuple List
# Using Counter() + lambda + sorted()
from collections import Counter
# initializing list
test_list = [(6, 5), (2, 7), (2, 5), (8, 7), (9, 8), (3, 7)]
# printing or... |
Python - Sort by Frequency of second element in Tuple list | https://www.geeksforgeeks.org/python-sort-by-frequency-of-second-element-in-tuple-list/ | from itertools import groupby # import groupby function from itertools module
def sort_by_frequency(
test_list,
): # define function called sort_by_frequency that takes a list called test_list as input
freq_dict = {
val: len(list(group))
for val, group in groupby(sorted(test_list, key=lambda... |
#Output : The original list is : [(6, 5), (2, 7), (2, 5), (8, 7), (9, 8), (3, 7)] | Python - Sort by Frequency of second element in Tuple list
from itertools import groupby # import groupby function from itertools module
def sort_by_frequency(
test_list,
): # define function called sort_by_frequency that takes a list called test_list as input
freq_dict = {
val: len(list(group))
... |
Python - Sort by Frequency of second element in Tuple list | https://www.geeksforgeeks.org/python-sort-by-frequency-of-second-element-in-tuple-list/ | import numpy as np
# initializing list
test_list = [(6, 5), (2, 7), (2, 5), (8, 7), (9, 8), (3, 7)]
# printing original list
print("The original list is : " + str(test_list))
# convert the list to a numpy array
arr = np.array(test_list)
# get the frequency of each second element using numpy's unique function
counts... |
#Output : The original list is : [(6, 5), (2, 7), (2, 5), (8, 7), (9, 8), (3, 7)] | Python - Sort by Frequency of second element in Tuple list
import numpy as np
# initializing list
test_list = [(6, 5), (2, 7), (2, 5), (8, 7), (9, 8), (3, 7)]
# printing original list
print("The original list is : " + str(test_list))
# convert the list to a numpy array
arr = np.array(test_list)
# get the frequenc... |
Python - Sort lists in tuple | https://www.geeksforgeeks.org/python-sort-lists-in-tuple/ | # Python3 code to demonstrate working of
# Sort lists in tuple
# Using tuple() + sorted() + generator expression
# Initializing tuple
test_tup = ([7, 5, 4], [8, 2, 4], [0, 7, 5])
# printing original tuple
print("The original tuple is : " + str(test_tup))
# Sort lists in tuple
# Using tuple() + sorted() + generator e... |
#Output : The original tuple is : ([7, 5, 4], [8, 2, 4], [0, 7, 5]) | Python - Sort lists in tuple
# Python3 code to demonstrate working of
# Sort lists in tuple
# Using tuple() + sorted() + generator expression
# Initializing tuple
test_tup = ([7, 5, 4], [8, 2, 4], [0, 7, 5])
# printing original tuple
print("The original tuple is : " + str(test_tup))
# Sort lists in tuple
# Using t... |
Python - Sort lists in tuple | https://www.geeksforgeeks.org/python-sort-lists-in-tuple/ | # Python3 code to demonstrate working of
# Sort lists in tuple
# Using map() + sorted()
# Initializing tuple
test_tup = ([7, 5, 4], [8, 2, 4], [0, 7, 5])
# printing original tuple
print("The original tuple is : " + str(test_tup))
# Sort lists in tuple
# Using map() + sorted()
res = tuple(map(sorted, test_tup))
# pr... |
#Output : The original tuple is : ([7, 5, 4], [8, 2, 4], [0, 7, 5]) | Python - Sort lists in tuple
# Python3 code to demonstrate working of
# Sort lists in tuple
# Using map() + sorted()
# Initializing tuple
test_tup = ([7, 5, 4], [8, 2, 4], [0, 7, 5])
# printing original tuple
print("The original tuple is : " + str(test_tup))
# Sort lists in tuple
# Using map() + sorted()
res = tup... |
Python - Sort lists in tuple | https://www.geeksforgeeks.org/python-sort-lists-in-tuple/ | original_tuple = ([7, 5, 4], [8, 2, 4], [0, 7, 5])
sorted_lists = ()
for lst in original_tuple:
sorted_list = sorted(lst)
sorted_lists += (sorted_list,)
print(sorted_lists) |
#Output : The original tuple is : ([7, 5, 4], [8, 2, 4], [0, 7, 5]) | Python - Sort lists in tuple
original_tuple = ([7, 5, 4], [8, 2, 4], [0, 7, 5])
sorted_lists = ()
for lst in original_tuple:
sorted_list = sorted(lst)
sorted_lists += (sorted_list,)
print(sorted_lists)
#Output : The original tuple is : ([7, 5, 4], [8, 2, 4], [0, 7, 5])
[END] |
Python program to Order Tuples using external List | https://www.geeksforgeeks.org/python-order-tuples-by-list/ | # Python3 code to demonstrate working of
# Order Tuples by List
# Using dict() + list comprehension
# initializing list
test_list = [("Gfg", 3), ("best", 9), ("CS", 10), ("Geeks", 2)]
# printing original list
print("The original list is : " + str(test_list))
# initializing order list
ord_list = ["Geeks", "best", "CS... |
#Output : The original list is : [('Gfg', 3), ('best', 9), ('CS', 10), ('Geeks', 2)] | Python program to Order Tuples using external List
# Python3 code to demonstrate working of
# Order Tuples by List
# Using dict() + list comprehension
# initializing list
test_list = [("Gfg", 3), ("best", 9), ("CS", 10), ("Geeks", 2)]
# printing original list
print("The original list is : " + str(test_list))
# initi... |
Python program to Order Tuples using external List | https://www.geeksforgeeks.org/python-order-tuples-by-list/ | # Python3 code to demonstrate working of
# Order Tuples by List
# Using setdefault() + sorted() + lambda
# initializing list
test_list = [("Gfg", 3), ("best", 9), ("CS", 10), ("Geeks", 2)]
# printing original list
print("The original list is : " + str(test_list))
# initializing order list
ord_list = ["Geeks", "best"... |
#Output : The original list is : [('Gfg', 3), ('best', 9), ('CS', 10), ('Geeks', 2)] | Python program to Order Tuples using external List
# Python3 code to demonstrate working of
# Order Tuples by List
# Using setdefault() + sorted() + lambda
# initializing list
test_list = [("Gfg", 3), ("best", 9), ("CS", 10), ("Geeks", 2)]
# printing original list
print("The original list is : " + str(test_list))
# ... |
Python program to Order Tuples using external List | https://www.geeksforgeeks.org/python-order-tuples-by-list/ | # Python3 code to demonstrate working of
# Order Tuples by List
# initializing list
test_list = [("Gfg", 3), ("best", 9), ("CS", 10), ("Geeks", 2)]
# printing original list
print("The original list is : " + str(test_list))
# initializing order list
ord_list = ["Geeks", "best", "CS", "Gfg"]
res = []
x = []
for i in ... |
#Output : The original list is : [('Gfg', 3), ('best', 9), ('CS', 10), ('Geeks', 2)] | Python program to Order Tuples using external List
# Python3 code to demonstrate working of
# Order Tuples by List
# initializing list
test_list = [("Gfg", 3), ("best", 9), ("CS", 10), ("Geeks", 2)]
# printing original list
print("The original list is : " + str(test_list))
# initializing order list
ord_list = ["Geek... |
Python program to Order Tuples using external List | https://www.geeksforgeeks.org/python-order-tuples-by-list/ | def order_tuples_by_list(test_list, ord_list):
return sorted(test_list, key=lambda x: ord_list.index(x[0]))
test_list = [("Gfg", 10), ("best", 3), ("CS", 8), ("Geeks", 7)]
ord_list = ["Geeks", "best", "CS", "Gfg"]
print(order_tuples_by_list(test_list, ord_list)) |
#Output : The original list is : [('Gfg', 3), ('best', 9), ('CS', 10), ('Geeks', 2)] | Python program to Order Tuples using external List
def order_tuples_by_list(test_list, ord_list):
return sorted(test_list, key=lambda x: ord_list.index(x[0]))
test_list = [("Gfg", 10), ("best", 3), ("CS", 8), ("Geeks", 7)]
ord_list = ["Geeks", "best", "CS", "Gfg"]
print(order_tuples_by_list(test_list, ord_list))
... |
Python program to Order Tuples using external List | https://www.geeksforgeeks.org/python-order-tuples-by-list/ | from operator import itemgetter
# input
original_list = [("Gfg", 3), ("best", 9), ("CS", 10), ("Geeks", 2)]
# sort the list using the sorted() function with itemgetter() function as its key parameter
ordered_list = sorted(original_list, key=itemgetter(1))
# output
print(ordered_list) |
#Output : The original list is : [('Gfg', 3), ('best', 9), ('CS', 10), ('Geeks', 2)] | Python program to Order Tuples using external List
from operator import itemgetter
# input
original_list = [("Gfg", 3), ("best", 9), ("CS", 10), ("Geeks", 2)]
# sort the list using the sorted() function with itemgetter() function as its key parameter
ordered_list = sorted(original_list, key=itemgetter(1))
# output
p... |
Python program to Order Tuples using external List | https://www.geeksforgeeks.org/python-order-tuples-by-list/ | from functools import reduce
# initializing list
test_list = [("Gfg", 3), ("best", 9), ("CS", 10), ("Geeks", 2)]
# printing original list
print("The original list is : " + str(test_list))
# initializing order list
ord_list = ["Geeks", "best", "CS", "Gfg"]
# using reduce() to sort the list based on order list
res = ... |
#Output : The original list is : [('Gfg', 3), ('best', 9), ('CS', 10), ('Geeks', 2)] | Python program to Order Tuples using external List
from functools import reduce
# initializing list
test_list = [("Gfg", 3), ("best", 9), ("CS", 10), ("Geeks", 2)]
# printing original list
print("The original list is : " + str(test_list))
# initializing order list
ord_list = ["Geeks", "best", "CS", "Gfg"]
# using r... |
Python - Filter Tuples by Kth element from list | https://www.geeksforgeeks.org/python-filter-tuples-by-kth-element-from-list/ | # Python3 code to demonstrate working of
# Filter Tuples by Kth element from List
# Using list comprehension
# initializing list
test_list = [("GFg", 5, 9), ("is", 4, 3), ("best", 10, 29)]
# printing original list
print("The original list is : " + str(test_list))
# initializing check_list
check_list = [4, 2, 8, 10]
... |
#Output : The original list is : [('GFg', 5, 9), ('is', 4, 3), ('best', 10, 29)] | Python - Filter Tuples by Kth element from list
# Python3 code to demonstrate working of
# Filter Tuples by Kth element from List
# Using list comprehension
# initializing list
test_list = [("GFg", 5, 9), ("is", 4, 3), ("best", 10, 29)]
# printing original list
print("The original list is : " + str(test_list))
# i... |
Python - Filter Tuples by Kth element from list | https://www.geeksforgeeks.org/python-filter-tuples-by-kth-element-from-list/ | # Python3 code to demonstrate working of
# Filter Tuples by Kth element from List
# Using filter() + lambda
# initializing list
test_list = [("GFg", 5, 9), ("is", 4, 3), ("best", 10, 29)]
# printing original list
print("The original list is : " + str(test_list))
# initializing check_list
check_list = [4, 2, 8, 10]
... |
#Output : The original list is : [('GFg', 5, 9), ('is', 4, 3), ('best', 10, 29)] | Python - Filter Tuples by Kth element from list
# Python3 code to demonstrate working of
# Filter Tuples by Kth element from List
# Using filter() + lambda
# initializing list
test_list = [("GFg", 5, 9), ("is", 4, 3), ("best", 10, 29)]
# printing original list
print("The original list is : " + str(test_list))
# in... |
Python - Filter Tuples by Kth element from list | https://www.geeksforgeeks.org/python-filter-tuples-by-kth-element-from-list/ | # Python3 code to demonstrate working of
# Filter Tuples by Kth element from List
# Using for loop
# initializing list
test_list = [("GFg", 5, 9), ("is", 4, 3), ("best", 10, 29)]
# printing original list
print("The original list is : " + str(test_list))
# initializing check_list
check_list = [4, 2, 8, 10]
# initial... |
#Output : The original list is : [('GFg', 5, 9), ('is', 4, 3), ('best', 10, 29)] | Python - Filter Tuples by Kth element from list
# Python3 code to demonstrate working of
# Filter Tuples by Kth element from List
# Using for loop
# initializing list
test_list = [("GFg", 5, 9), ("is", 4, 3), ("best", 10, 29)]
# printing original list
print("The original list is : " + str(test_list))
# initializin... |
Python - Filter Tuples by Kth element from list | https://www.geeksforgeeks.org/python-filter-tuples-by-kth-element-from-list/ | # Python program for the above approach
# Function to filter tuples
def filter_tuples(test_list, K, check_list):
if not test_list:
return []
if test_list[0][K] in check_list:
return [test_list[0]] + filter_tuples(test_list[1:], K, check_list)
else:
return filter_tuples(test_list[1:... |
#Output : The original list is : [('GFg', 5, 9), ('is', 4, 3), ('best', 10, 29)] | Python - Filter Tuples by Kth element from list
# Python program for the above approach
# Function to filter tuples
def filter_tuples(test_list, K, check_list):
if not test_list:
return []
if test_list[0][K] in check_list:
return [test_list[0]] + filter_tuples(test_list[1:], K, check_list)
... |
Python - Closest Pair to Kth index element in tuple | https://www.geeksforgeeks.org/python-closest-pair-to-kth-index-element-in-tuple/ | # Python3 code to demonstrate working of
# Closest Pair to Kth index element in Tuple
# Using enumerate() + loop
# initializing list
test_list = [(3, 4), (78, 76), (2, 3), (9, 8), (19, 23)]
# printing original list
print("The original list is : " + str(test_list))
# initializing tuple
tup = (17, 23)
# initializing ... |
#Output : The original list is : [(3, 4), (78, 76), (2, 3), (9, 8), (19, 23)] | Python - Closest Pair to Kth index element in tuple
# Python3 code to demonstrate working of
# Closest Pair to Kth index element in Tuple
# Using enumerate() + loop
# initializing list
test_list = [(3, 4), (78, 76), (2, 3), (9, 8), (19, 23)]
# printing original list
print("The original list is : " + str(test_list))... |
Python - Closest Pair to Kth index element in tuple | https://www.geeksforgeeks.org/python-closest-pair-to-kth-index-element-in-tuple/ | # Python3 code to demonstrate working of
# Closest Pair to Kth index element in Tuple
# Using min() + lambda
# initializing list
test_list = [(3, 4), (78, 76), (2, 3), (9, 8), (19, 23)]
# printing original list
print("The original list is : " + str(test_list))
# initializing tuple
tup = (17, 23)
# initializing K
K ... |
#Output : The original list is : [(3, 4), (78, 76), (2, 3), (9, 8), (19, 23)] | Python - Closest Pair to Kth index element in tuple
# Python3 code to demonstrate working of
# Closest Pair to Kth index element in Tuple
# Using min() + lambda
# initializing list
test_list = [(3, 4), (78, 76), (2, 3), (9, 8), (19, 23)]
# printing original list
print("The original list is : " + str(test_list))
# ... |
Python - Closest Pair to Kth index element in tuple | https://www.geeksforgeeks.org/python-closest-pair-to-kth-index-element-in-tuple/ | # initializing list
test_list = [(3, 4), (78, 76), (2, 3), (9, 8), (19, 23)]
# initializing tuple
tup = (17, 23)
# initializing K
K = 1
# Using a lambda function and the min() function
res = min(test_list, key=lambda x: abs(x[K - 1] - tup[K - 1]))
# printing result
print("The nearest tuple to Kth index element is :... |
#Output : The original list is : [(3, 4), (78, 76), (2, 3), (9, 8), (19, 23)] | Python - Closest Pair to Kth index element in tuple
# initializing list
test_list = [(3, 4), (78, 76), (2, 3), (9, 8), (19, 23)]
# initializing tuple
tup = (17, 23)
# initializing K
K = 1
# Using a lambda function and the min() function
res = min(test_list, key=lambda x: abs(x[K - 1] - tup[K - 1]))
# printing res... |
Python - Closest Pair to Kth index element in tuple | https://www.geeksforgeeks.org/python-closest-pair-to-kth-index-element-in-tuple/ | import heapq
# initializing the list of tuples
test_list = [(3, 4), (78, 76), (2, 3), (9, 8), (19, 23)]
# initializing the target tuple
tup = (17, 23)
# initializing the index of the element to compare in each tuple
K = 1
# using the heapq.nsmallest() function to get the tuple with the smallest difference between t... |
#Output : The original list is : [(3, 4), (78, 76), (2, 3), (9, 8), (19, 23)] | Python - Closest Pair to Kth index element in tuple
import heapq
# initializing the list of tuples
test_list = [(3, 4), (78, 76), (2, 3), (9, 8), (19, 23)]
# initializing the target tuple
tup = (17, 23)
# initializing the index of the element to compare in each tuple
K = 1
# using the heapq.nsmallest() function t... |
Python - Closest Pair to Kth index element in tuple | https://www.geeksforgeeks.org/python-closest-pair-to-kth-index-element-in-tuple/ | # initializing the list of tuples
test_list = [(3, 4), (78, 76), (2, 3), (9, 8), (19, 23)]
# initializing the target tuple
tup = (17, 23)
# initializing the index of the element to compare in each tuple
K = 1
# define a custom key function
def key_func(t):
return abs(t[K - 1] - tup[K - 1])
# use the sorted() ... |
#Output : The original list is : [(3, 4), (78, 76), (2, 3), (9, 8), (19, 23)] | Python - Closest Pair to Kth index element in tuple
# initializing the list of tuples
test_list = [(3, 4), (78, 76), (2, 3), (9, 8), (19, 23)]
# initializing the target tuple
tup = (17, 23)
# initializing the index of the element to compare in each tuple
K = 1
# define a custom key function
def key_func(t):
r... |
Python - Tuple List intersection (Order Irrespective) | https://www.geeksforgeeks.org/python-tuple-list-intersection-order-irrespective/ | # Python3 code to demonstrate working of
# Tuple List intersection [ Order irrespective ]
# Using sorted() + set() + & operator + list comprehension
# initializing lists
test_list1 = [(3, 4), (5, 6), (9, 10), (4, 5)]
test_list2 = [(5, 4), (3, 4), (6, 5), (9, 11)]
# printing original list
print("The original list 1 is... |
#Output : The original list 1 is : [(3, 4), (5, 6), (9, 10), (4, 5)] | Python - Tuple List intersection (Order Irrespective)
# Python3 code to demonstrate working of
# Tuple List intersection [ Order irrespective ]
# Using sorted() + set() + & operator + list comprehension
# initializing lists
test_list1 = [(3, 4), (5, 6), (9, 10), (4, 5)]
test_list2 = [(5, 4), (3, 4), (6, 5), (9, 11)]... |
Python - Tuple List intersection (Order Irrespective) | https://www.geeksforgeeks.org/python-tuple-list-intersection-order-irrespective/ | # Python3 code to demonstrate working of
# Tuple List intersection [ Order irrespective ]
# Using list comprehension + map() + frozenset() + & operator
# initializing lists
test_list1 = [(3, 4), (5, 6), (9, 10), (4, 5)]
test_list2 = [(5, 4), (3, 4), (6, 5), (9, 11)]
# printing original list
print("The original list 1... |
#Output : The original list 1 is : [(3, 4), (5, 6), (9, 10), (4, 5)] | Python - Tuple List intersection (Order Irrespective)
# Python3 code to demonstrate working of
# Tuple List intersection [ Order irrespective ]
# Using list comprehension + map() + frozenset() + & operator
# initializing lists
test_list1 = [(3, 4), (5, 6), (9, 10), (4, 5)]
test_list2 = [(5, 4), (3, 4), (6, 5), (9, 1... |
Python - Tuple List intersection (Order Irrespective) | https://www.geeksforgeeks.org/python-tuple-list-intersection-order-irrespective/ | # Python3 code to demonstrate working of
# Tuple List intersection [ Order irrespective ]
# Using set() + frozenset() + intersection() + list comprehension
# initializing lists
test_list1 = [(3, 4), (5, 6), (9, 10), (4, 5)]
test_list2 = [(5, 4), (3, 4), (6, 5), (9, 11)]
# printing original list
print("The original li... |
#Output : The original list 1 is : [(3, 4), (5, 6), (9, 10), (4, 5)] | Python - Tuple List intersection (Order Irrespective)
# Python3 code to demonstrate working of
# Tuple List intersection [ Order irrespective ]
# Using set() + frozenset() + intersection() + list comprehension
# initializing lists
test_list1 = [(3, 4), (5, 6), (9, 10), (4, 5)]
test_list2 = [(5, 4), (3, 4), (6, 5), (... |
Python - Tuple List intersection (Order Irrespective) | https://www.geeksforgeeks.org/python-tuple-list-intersection-order-irrespective/ | # initializing lists
test_list1 = [(3, 4), (5, 6), (9, 10), (4, 5)]
test_list2 = [(5, 4), (3, 4), (6, 5), (9, 11)]
# Creating an empty dictionary
freq_dict = {}
# Looping through the tuples in test_list1 and test_list2
for tup in test_list1 + test_list2:
# Sorting the tuple and converting it to a string
sorte... |
#Output : The original list 1 is : [(3, 4), (5, 6), (9, 10), (4, 5)] | Python - Tuple List intersection (Order Irrespective)
# initializing lists
test_list1 = [(3, 4), (5, 6), (9, 10), (4, 5)]
test_list2 = [(5, 4), (3, 4), (6, 5), (9, 11)]
# Creating an empty dictionary
freq_dict = {}
# Looping through the tuples in test_list1 and test_list2
for tup in test_list1 + test_list2:
# S... |
Python - Tuple List intersection (Order Irrespective) | https://www.geeksforgeeks.org/python-tuple-list-intersection-order-irrespective/ | # initializing lists
test_list1 = [(3, 4), (5, 6), (9, 10), (4, 5)]
test_list2 = [(5, 4), (3, 4), (6, 5), (9, 11)]
# Using nested loops
res = []
for tup1 in test_list1:
for tup2 in test_list2:
if set(tup1) == set(tup2):
res.append(tup1)
# printing result
print("List after intersection : " + st... |
#Output : The original list 1 is : [(3, 4), (5, 6), (9, 10), (4, 5)] | Python - Tuple List intersection (Order Irrespective)
# initializing lists
test_list1 = [(3, 4), (5, 6), (9, 10), (4, 5)]
test_list2 = [(5, 4), (3, 4), (6, 5), (9, 11)]
# Using nested loops
res = []
for tup1 in test_list1:
for tup2 in test_list2:
if set(tup1) == set(tup2):
res.append(tup1)
#... |
Python - Intersection in Tuple Records data | https://www.geeksforgeeks.org/python-intersection-in-tuple-records-data/ | # Python3 code to demonstrate working of
# Intersection in Tuple Records Data
# Using list comprehension
# Initializing lists
test_list1 = [("gfg", 1), ("is", 2), ("best", 3)]
test_list2 = [("i", 3), ("love", 4), ("gfg", 1)]
# printing original lists
print("The original list 1 is : " + str(test_list1))
print("The ori... |
#Output : The original list 1 is : [('gfg', 1), ('is', 2), ('best', 3)] | Python - Intersection in Tuple Records data
# Python3 code to demonstrate working of
# Intersection in Tuple Records Data
# Using list comprehension
# Initializing lists
test_list1 = [("gfg", 1), ("is", 2), ("best", 3)]
test_list2 = [("i", 3), ("love", 4), ("gfg", 1)]
# printing original lists
print("The original l... |
Python - Intersection in Tuple Records data | https://www.geeksforgeeks.org/python-intersection-in-tuple-records-data/ | # Python3 code to demonstrate working of
# Intersection in Tuple Records Data
# Using set.intersection()
# Initializing lists
test_list1 = [("gfg", 1), ("is", 2), ("best", 3)]
test_list2 = [("i", 3), ("love", 4), ("gfg", 1)]
# printing original lists
print("The original list 1 is : " + str(test_list1))
print("The ori... |
#Output : The original list 1 is : [('gfg', 1), ('is', 2), ('best', 3)] | Python - Intersection in Tuple Records data
# Python3 code to demonstrate working of
# Intersection in Tuple Records Data
# Using set.intersection()
# Initializing lists
test_list1 = [("gfg", 1), ("is", 2), ("best", 3)]
test_list2 = [("i", 3), ("love", 4), ("gfg", 1)]
# printing original lists
print("The original l... |
Python - Intersection in Tuple Records data | https://www.geeksforgeeks.org/python-intersection-in-tuple-records-data/ | # define the two lists of tuples
list1 = [("gfg", 1), ("is", 2), ("best", 3)]
list2 = [("i", 3), ("love", 4), ("gfg", 1)]
# create two dictionaries from the lists
dict1 = dict(list1)
dict2 = dict(list2)
# find the keys that are present in both dictionaries
common_keys = set(dict1.keys()).intersection(set(dict2.keys()... |
#Output : The original list 1 is : [('gfg', 1), ('is', 2), ('best', 3)] | Python - Intersection in Tuple Records data
# define the two lists of tuples
list1 = [("gfg", 1), ("is", 2), ("best", 3)]
list2 = [("i", 3), ("love", 4), ("gfg", 1)]
# create two dictionaries from the lists
dict1 = dict(list1)
dict2 = dict(list2)
# find the keys that are present in both dictionaries
common_keys = s... |
Python - Intersection in Tuple Records data | https://www.geeksforgeeks.org/python-intersection-in-tuple-records-data/ | test_list1 = [("gfg", 1), ("is", 2), ("best", 3)]
test_list2 = [("i", 3), ("love", 4), ("gfg", 1)]
# printing original lists
print("The original list 1 is : " + str(test_list1))
print("The original list 2 is : " + str(test_list2))
res = list(filter(lambda t: t in test_list2, test_list1))
print("The Intersection of da... |
#Output : The original list 1 is : [('gfg', 1), ('is', 2), ('best', 3)] | Python - Intersection in Tuple Records data
test_list1 = [("gfg", 1), ("is", 2), ("best", 3)]
test_list2 = [("i", 3), ("love", 4), ("gfg", 1)]
# printing original lists
print("The original list 1 is : " + str(test_list1))
print("The original list 2 is : " + str(test_list2))
res = list(filter(lambda t: t in test_list... |
Python - Intersection in Tuple Records data | https://www.geeksforgeeks.org/python-intersection-in-tuple-records-data/ | # test data
test_list1 = [("gfg", 1), ("is", 2), ("best", 3)]
test_list2 = [("i", 3), ("love", 4), ("gfg", 1)]
# initialize an empty list
intersection = []
# loop through each tuple in test_list1
for tuple1 in test_list1:
# extract the first element (string)
str1 = tuple1[0]
# loop through each tuple in t... |
#Output : The original list 1 is : [('gfg', 1), ('is', 2), ('best', 3)] | Python - Intersection in Tuple Records data
# test data
test_list1 = [("gfg", 1), ("is", 2), ("best", 3)]
test_list2 = [("i", 3), ("love", 4), ("gfg", 1)]
# initialize an empty list
intersection = []
# loop through each tuple in test_list1
for tuple1 in test_list1:
# extract the first element (string)
str1 ... |
Python - Intersection in Tuple Records data | https://www.geeksforgeeks.org/python-intersection-in-tuple-records-data/ | import itertools
test_list1 = [("gfg", 1), ("is", 2), ("best", 3)]
test_list2 = [("i", 3), ("love", 4), ("gfg", 1)]
# use itertools.product() to create a Cartesian product of the two lists
cartesian_product = list(itertools.product(test_list1, test_list2))
# use list comprehension to filter the resulting list
filter... |
#Output : The original list 1 is : [('gfg', 1), ('is', 2), ('best', 3)] | Python - Intersection in Tuple Records data
import itertools
test_list1 = [("gfg", 1), ("is", 2), ("best", 3)]
test_list2 = [("i", 3), ("love", 4), ("gfg", 1)]
# use itertools.product() to create a Cartesian product of the two lists
cartesian_product = list(itertools.product(test_list1, test_list2))
# use list com... |
Python - Unique Tuple Frequency (Order Irrespective) | https://www.geeksforgeeks.org/python-unique-tuple-frequency-order-irrespective/ | # Python3 code to demonstrate working of
# Unique Tuple Frequency [ Order Irrespective ]
# Using tuple() + list comprehension + sorted() + len()
# initializing lists
test_list = [(3, 4), (1, 2), (4, 3), (5, 6)]
# printing original list
print("The original list is : " + str(test_list))
# Using tuple() + list comprehe... |
#Output : The original list is : [(3, 4), (1, 2), (4, 3), (5, 6)] | Python - Unique Tuple Frequency (Order Irrespective)
# Python3 code to demonstrate working of
# Unique Tuple Frequency [ Order Irrespective ]
# Using tuple() + list comprehension + sorted() + len()
# initializing lists
test_list = [(3, 4), (1, 2), (4, 3), (5, 6)]
# printing original list
print("The original list is... |
Python - Unique Tuple Frequency (Order Irrespective) | https://www.geeksforgeeks.org/python-unique-tuple-frequency-order-irrespective/ | # Python3 code to demonstrate working of
# Unique Tuple Frequency [ Order Irrespective ]
# Using map() + sorted() + tuple() + set() + len()
# initializing lists
test_list = [(3, 4), (1, 2), (4, 3), (5, 6)]
# printing original list
print("The original list is : " + str(test_list))
# Using map() + sorted() + tuple() +... |
#Output : The original list is : [(3, 4), (1, 2), (4, 3), (5, 6)] | Python - Unique Tuple Frequency (Order Irrespective)
# Python3 code to demonstrate working of
# Unique Tuple Frequency [ Order Irrespective ]
# Using map() + sorted() + tuple() + set() + len()
# initializing lists
test_list = [(3, 4), (1, 2), (4, 3), (5, 6)]
# printing original list
print("The original list is : " ... |
Python - Unique Tuple Frequency (Order Irrespective) | https://www.geeksforgeeks.org/python-unique-tuple-frequency-order-irrespective/ | def unique_tuple_frequency(test_list):
# base case
if len(test_list) == 0:
return 0
# recursive call
rest_freq = unique_tuple_frequency(test_list[1:])
# check if the first element is unique
for t in test_list[1:]:
if sorted(test_list[0]) == sorted(t):
return rest_fr... |
#Output : The original list is : [(3, 4), (1, 2), (4, 3), (5, 6)] | Python - Unique Tuple Frequency (Order Irrespective)
def unique_tuple_frequency(test_list):
# base case
if len(test_list) == 0:
return 0
# recursive call
rest_freq = unique_tuple_frequency(test_list[1:])
# check if the first element is unique
for t in test_list[1:]:
if sorted... |
Python - Skew Nested Tuple Summation | https://www.geeksforgeeks.org/python-skew-nested-tuple-summation/ | # Python3 code to demonstrate working of
# Skew Nested Tuple Summation
# Using infinite loop
# initializing tuple
test_tup = (5, (6, (1, (9, (10, None)))))
# printing original tuple
print("The original tuple is : " + str(test_tup))
res = 0
while test_tup:
res += test_tup[0]
# assigning inner tuple as origin... |
#Output : The original tuple is : (5, (6, (1, (9, (10, None))))) | Python - Skew Nested Tuple Summation
# Python3 code to demonstrate working of
# Skew Nested Tuple Summation
# Using infinite loop
# initializing tuple
test_tup = (5, (6, (1, (9, (10, None)))))
# printing original tuple
print("The original tuple is : " + str(test_tup))
res = 0
while test_tup:
res += test_tup[0]... |
Python - Skew Nested Tuple Summation | https://www.geeksforgeeks.org/python-skew-nested-tuple-summation/ | # Python3 code to demonstrate working of
# Skew Nested Tuple Summation
# Using recursion
# helper function to perform task
def tup_sum(test_tup):
# return on None
if not test_tup:
return 0
else:
return test_tup[0] + tup_sum(test_tup[1])
# initializing tuple
test_tup = (5, (6, (1, (9, (10... |
#Output : The original tuple is : (5, (6, (1, (9, (10, None))))) | Python - Skew Nested Tuple Summation
# Python3 code to demonstrate working of
# Skew Nested Tuple Summation
# Using recursion
# helper function to perform task
def tup_sum(test_tup):
# return on None
if not test_tup:
return 0
else:
return test_tup[0] + tup_sum(test_tup[1])
# initializi... |
Python - Skew Nested Tuple Summation | https://www.geeksforgeeks.org/python-skew-nested-tuple-summation/ | def tup_sum(test_tup):
# Base case: return 0 for empty tuple or tuple with no integer elements
if not test_tup or not isinstance(test_tup[0], int):
return 0
else:
# Recursively compute sum of first element of current tuple and remaining tuples
return test_tup[0] + tup_sum(test_tup[1:... |
#Output : The original tuple is : (5, (6, (1, (9, (10, None))))) | Python - Skew Nested Tuple Summation
def tup_sum(test_tup):
# Base case: return 0 for empty tuple or tuple with no integer elements
if not test_tup or not isinstance(test_tup[0], int):
return 0
else:
# Recursively compute sum of first element of current tuple and remaining tuples
r... |
Python - Skew Nested Tuple Summation | https://www.geeksforgeeks.org/python-skew-nested-tuple-summation/ | # Python3 code to demonstrate working of
# Skew Nested Tuple Summation
# Using stack
# initializing tuple
test_tup = (5, (6, (1, (9, (10, None)))))
# function to compute sum of first elements using stack
def sum_first_elements(test_tup):
stack = []
res = 0
stack.append(test_tup)
while stack:
... |
#Output : The original tuple is : (5, (6, (1, (9, (10, None))))) | Python - Skew Nested Tuple Summation
# Python3 code to demonstrate working of
# Skew Nested Tuple Summation
# Using stack
# initializing tuple
test_tup = (5, (6, (1, (9, (10, None)))))
# function to compute sum of first elements using stack
def sum_first_elements(test_tup):
stack = []
res = 0
stack.app... |
Python - Convert Binary tuple to Integer | https://www.geeksforgeeks.org/python-convert-binary-tuple-to-integer/ | # Python3 code to demonstrate working of
# Convert Binary tuple to Integer
# Using join() + list comprehension + int()
# initializing tuple
test_tup = (1, 1, 0, 1, 0, 0, 1)
# printing original tuple
print("The original tuple is : " + str(test_tup))
# using int() with base to get actual number
res = int("".join(str(e... | #Input : test_tup = (1, 1, 0)
#Output : 6 | Python - Convert Binary tuple to Integer
# Python3 code to demonstrate working of
# Convert Binary tuple to Integer
# Using join() + list comprehension + int()
# initializing tuple
test_tup = (1, 1, 0, 1, 0, 0, 1)
# printing original tuple
print("The original tuple is : " + str(test_tup))
# using int() with base t... |
Python - Convert Binary tuple to Integer | https://www.geeksforgeeks.org/python-convert-binary-tuple-to-integer/ | # Python3 code to demonstrate working of
# Convert Binary tuple to Integer
# Using bit shift and | operator
# initializing tuple
test_tup = (1, 1, 0, 1, 0, 0, 1)
# printing original tuple
print("The original tuple is : " + str(test_tup))
res = 0
for ele in test_tup:
# left bit shift and or operator
# for in... | #Input : test_tup = (1, 1, 0)
#Output : 6 | Python - Convert Binary tuple to Integer
# Python3 code to demonstrate working of
# Convert Binary tuple to Integer
# Using bit shift and | operator
# initializing tuple
test_tup = (1, 1, 0, 1, 0, 0, 1)
# printing original tuple
print("The original tuple is : " + str(test_tup))
res = 0
for ele in test_tup:
# ... |
Python - Convert Binary tuple to Integer | https://www.geeksforgeeks.org/python-convert-binary-tuple-to-integer/ | # Python3 code to demonstrate working of
# Convert Binary tuple to Integer
# initializing tuple
test_tup = (1, 1, 0, 1, 0, 0, 1)
# printing original tuple
print("The original tuple is : " + str(test_tup))
# using int() with base to get actual number
x = list(map(str, test_tup))
x = "".join(x)
res = int(x, 2)
# prin... | #Input : test_tup = (1, 1, 0)
#Output : 6 | Python - Convert Binary tuple to Integer
# Python3 code to demonstrate working of
# Convert Binary tuple to Integer
# initializing tuple
test_tup = (1, 1, 0, 1, 0, 0, 1)
# printing original tuple
print("The original tuple is : " + str(test_tup))
# using int() with base to get actual number
x = list(map(str, test_t... |
Python - Convert Binary tuple to Integer | https://www.geeksforgeeks.org/python-convert-binary-tuple-to-integer/ | # Python3 code to demonstrate working of
# Convert Binary tuple to Integer
# initializing tuple
test_tup = (1, 1, 0, 1, 0, 0, 1)
# printing original tuple
print("The original tuple is : " + str(test_tup))
res = 0
j = 0
for i in range(len(test_tup), 0, -1):
x = 2**j
res += x * test_tup[i - 1]
if j > len(... | #Input : test_tup = (1, 1, 0)
#Output : 6 | Python - Convert Binary tuple to Integer
# Python3 code to demonstrate working of
# Convert Binary tuple to Integer
# initializing tuple
test_tup = (1, 1, 0, 1, 0, 0, 1)
# printing original tuple
print("The original tuple is : " + str(test_tup))
res = 0
j = 0
for i in range(len(test_tup), 0, -1):
x = 2**j
... |
Python - Convert Binary tuple to Integer | https://www.geeksforgeeks.org/python-convert-binary-tuple-to-integer/ | binary_tuple = (1, 1, 0)
result = 0
length = len(binary_tuple)
for i in range(length):
element = binary_tuple[length - i - 1]
result = result + element * pow(2, i)
print("The output integer is:", result) | #Input : test_tup = (1, 1, 0)
#Output : 6 | Python - Convert Binary tuple to Integer
binary_tuple = (1, 1, 0)
result = 0
length = len(binary_tuple)
for i in range(length):
element = binary_tuple[length - i - 1]
result = result + element * pow(2, i)
print("The output integer is:", result)
#Input : test_tup = (1, 1, 0)
#Output : 6
[END] |
Python - Convert Binary tuple to Integer | https://www.geeksforgeeks.org/python-convert-binary-tuple-to-integer/ | # initializing tuple
test_tup = (1, 1, 0, 1, 0, 0, 1)
# printing original tuple
print("The original tuple is : " + str(test_tup))
# using bit shifting and bitwise operations to get actual number
res = 0
for bit in test_tup:
res = (res << 1) | bit
# printing result
print("Decimal number is : " + str(res)) | #Input : test_tup = (1, 1, 0)
#Output : 6 | Python - Convert Binary tuple to Integer
# initializing tuple
test_tup = (1, 1, 0, 1, 0, 0, 1)
# printing original tuple
print("The original tuple is : " + str(test_tup))
# using bit shifting and bitwise operations to get actual number
res = 0
for bit in test_tup:
res = (res << 1) | bit
# printing result
print... |
Python - Convert Binary tuple to Integer | https://www.geeksforgeeks.org/python-convert-binary-tuple-to-integer/ | def binary_tuple_to_int(binary_tup):
if len(binary_tup) == 0:
return 0
else:
return binary_tup[0] * 2 ** (len(binary_tup) - 1) + binary_tuple_to_int(
binary_tup[1:]
)
# initializing tuple
test_tup = (1, 1, 0, 1, 0, 0, 1)
# printing original tuple
print("The original tuple ... | #Input : test_tup = (1, 1, 0)
#Output : 6 | Python - Convert Binary tuple to Integer
def binary_tuple_to_int(binary_tup):
if len(binary_tup) == 0:
return 0
else:
return binary_tup[0] * 2 ** (len(binary_tup) - 1) + binary_tuple_to_int(
binary_tup[1:]
)
# initializing tuple
test_tup = (1, 1, 0, 1, 0, 0, 1)
# printin... |
Python - Tuple XOR operation | https://www.geeksforgeeks.org/python-tuple-xor-operation/ | # Python3 code to demonstrate working of
# Tuple XOR operation
# using zip() + generator expression
# initialize tuples
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(test_tup2))
# Tuple XOR operati... |
#Output : The original tuple 1 : (10, 4, 6, 9) | Python - Tuple XOR operation
# Python3 code to demonstrate working of
# Tuple XOR operation
# using zip() + generator expression
# initialize tuples
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(t... |
Python - Tuple XOR operation | https://www.geeksforgeeks.org/python-tuple-xor-operation/ | # Python3 code to demonstrate working of
# Tuple XOR operation
# using map() + xor
from operator import xor
# initialize tuples
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(test_tup2))
# Tuple XOR... |
#Output : The original tuple 1 : (10, 4, 6, 9) | Python - Tuple XOR operation
# Python3 code to demonstrate working of
# Tuple XOR operation
# using map() + xor
from operator import xor
# initialize tuples
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : "... |
Python - Tuple XOR operation | https://www.geeksforgeeks.org/python-tuple-xor-operation/ | # Python3 code to demonstrate working of
# Tuple XOR operation
# using numpy
import numpy as np
# initialize tuples
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(test_tup2))
# Tuple XOR operation
#... |
#Output : The original tuple 1 : (10, 4, 6, 9) | Python - Tuple XOR operation
# Python3 code to demonstrate working of
# Tuple XOR operation
# using numpy
import numpy as np
# initialize tuples
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(test_... |
Python - Tuple XOR operation | https://www.geeksforgeeks.org/python-tuple-xor-operation/ | # Python3 code to demonstrate working of
# Tuple XOR operation
# initialize tuples
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(test_tup2))
# Tuple XOR operation
res = []
for i in range(0, len(tes... |
#Output : The original tuple 1 : (10, 4, 6, 9) | Python - Tuple XOR operation
# Python3 code to demonstrate working of
# Tuple XOR operation
# initialize tuples
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(test_tup2))
# Tuple XOR operation
res... |
Python - Tuple XOR operation | https://www.geeksforgeeks.org/python-tuple-xor-operation/ | # initialize tuples
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# perform XOR operation using list comprehension
res = tuple([test_tup1[i] ^ test_tup2[i] for i in range(len(test_tup1))])
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(test_tup2... |
#Output : The original tuple 1 : (10, 4, 6, 9) | Python - Tuple XOR operation
# initialize tuples
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# perform XOR operation using list comprehension
res = tuple([test_tup1[i] ^ test_tup2[i] for i in range(len(test_tup1))])
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The origi... |
Python - Tuple XOR operation | https://www.geeksforgeeks.org/python-tuple-xor-operation/ | import operator
import itertools
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# Tuple XOR operation using itertools.starmap() and operator.xor()
res = tuple(itertools.starmap(operator.xor, zip(test_tup1, test_tup2)))
# printing result
print("The XOR tuple : " + str(res)) |
#Output : The original tuple 1 : (10, 4, 6, 9) | Python - Tuple XOR operation
import operator
import itertools
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# Tuple XOR operation using itertools.starmap() and operator.xor()
res = tuple(itertools.starmap(operator.xor, zip(test_tup1, test_tup2)))
# printing result
print("The XOR tuple : " + str(res))
#Output... |
Python - Tuple XOR operation | https://www.geeksforgeeks.org/python-tuple-xor-operation/ | import pandas as pd
# initialize tuples
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(test_tup2))
# create pandas DataFrames
df1 = pd.DataFrame(list(test_tup1)).T
df2 = pd.DataFrame(list(test_tup2)... |
#Output : The original tuple 1 : (10, 4, 6, 9) | Python - Tuple XOR operation
import pandas as pd
# initialize tuples
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(test_tup2))
# create pandas DataFrames
df1 = pd.DataFrame(list(test_tup1)).T
df2... |
Python - AND operation between tuples | https://www.geeksforgeeks.org/python-and-operation-between-tuples/ | # Python3 code to demonstrate working of
# Cross Tuple AND operation
# using map() + lambda
# initialize tuples
test_tup1 = (10, 4, 5)
test_tup2 = (2, 5, 18)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(test_tup2))
# Cross Tuple AND operation
# us... |
#Output : The original tuple 1 : (10, 4, 5) | Python - AND operation between tuples
# Python3 code to demonstrate working of
# Cross Tuple AND operation
# using map() + lambda
# initialize tuples
test_tup1 = (10, 4, 5)
test_tup2 = (2, 5, 18)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(test... |
Python - AND operation between tuples | https://www.geeksforgeeks.org/python-and-operation-between-tuples/ | # Python3 code to demonstrate working of
# Cross Tuple AND operation
# using map() + iand()
import operator
# initialize tuples
test_tup1 = (10, 4, 5)
test_tup2 = (2, 5, 18)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(test_tup2))
# Cross Tuple AN... |
#Output : The original tuple 1 : (10, 4, 5) | Python - AND operation between tuples
# Python3 code to demonstrate working of
# Cross Tuple AND operation
# using map() + iand()
import operator
# initialize tuples
test_tup1 = (10, 4, 5)
test_tup2 = (2, 5, 18)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple ... |
Python - AND operation between tuples | https://www.geeksforgeeks.org/python-and-operation-between-tuples/ | # Python3 code to demonstrate working of
# Cross Tuple AND operation
# using List comprehension
# initialize tuples
test_tup1 = (10, 4, 5)
test_tup2 = (2, 5, 18)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(test_tup2))
# Cross Tuple AND operation
... |
#Output : The original tuple 1 : (10, 4, 5) | Python - AND operation between tuples
# Python3 code to demonstrate working of
# Cross Tuple AND operation
# using List comprehension
# initialize tuples
test_tup1 = (10, 4, 5)
test_tup2 = (2, 5, 18)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(... |
Python - AND operation between tuples | https://www.geeksforgeeks.org/python-and-operation-between-tuples/ | test_tup1 = (10, 4, 5)
test_tup2 = (2, 5, 18)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(test_tup2))
res = tuple([i & j for i, j in zip(test_tup1, test_tup2)])
print(res)
# This code is contributed by Jyothi pinjala |
#Output : The original tuple 1 : (10, 4, 5) | Python - AND operation between tuples
test_tup1 = (10, 4, 5)
test_tup2 = (2, 5, 18)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(test_tup2))
res = tuple([i & j for i, j in zip(test_tup1, test_tup2)])
print(res)
# This code is contributed by Jyothi... |
Python - AND operation between tuples | https://www.geeksforgeeks.org/python-and-operation-between-tuples/ | def bitwise_and_tuples(tup1, tup2):
result = []
for i in range(len(tup1)):
result.append(tup1[i] & tup2[i])
return tuple(result)
test_tup1 = (10, 4, 5)
test_tup2 = (2, 5, 18)
res = bitwise_and_tuples(test_tup1, test_tup2)
print(res) |
#Output : The original tuple 1 : (10, 4, 5) | Python - AND operation between tuples
def bitwise_and_tuples(tup1, tup2):
result = []
for i in range(len(tup1)):
result.append(tup1[i] & tup2[i])
return tuple(result)
test_tup1 = (10, 4, 5)
test_tup2 = (2, 5, 18)
res = bitwise_and_tuples(test_tup1, test_tup2)
print(res)
#Output : The origina... |
Python - Elementwise AND in tuples | https://www.geeksforgeeks.org/python-elementwise-and-in-tuples/ | # Python3 code to demonstrate working of
# Elementwise AND in tuples
# using zip() + generator expression
# initialize tuples
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(test_tup2))
# Elementwise... |
#Output : The original tuple 1 : (10, 4, 6, 9) | Python - Elementwise AND in tuples
# Python3 code to demonstrate working of
# Elementwise AND in tuples
# using zip() + generator expression
# initialize tuples
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple ... |
Python - Elementwise AND in tuples | https://www.geeksforgeeks.org/python-elementwise-and-in-tuples/ | # Python3 code to demonstrate working of
# Elementwise AND in tuples
# using map() + iand
from operator import iand
# initialize tuples
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(test_tup2))
# E... |
#Output : The original tuple 1 : (10, 4, 6, 9) | Python - Elementwise AND in tuples
# Python3 code to demonstrate working of
# Elementwise AND in tuples
# using map() + iand
from operator import iand
# initialize tuples
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The origi... |
Python - Elementwise AND in tuples | https://www.geeksforgeeks.org/python-elementwise-and-in-tuples/ | # Python3 code to demonstrate working of
# Elementwise AND in tuples
# using numpy.bitwise_and
import numpy as np
# initialize tuples
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The original tuple 2 : " + str(test_tup2))
# El... |
#Output : The original tuple 1 : (10, 4, 6, 9) | Python - Elementwise AND in tuples
# Python3 code to demonstrate working of
# Elementwise AND in tuples
# using numpy.bitwise_and
import numpy as np
# initialize tuples
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# printing original tuples
print("The original tuple 1 : " + str(test_tup1))
print("The origin... |
Python - Elementwise AND in tuples | https://www.geeksforgeeks.org/python-elementwise-and-in-tuples/ | # Initialize input tuples
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# Perform elementwise AND operation using a list comprehension and bitwise &
res = tuple(test_tup1[i] & test_tup2[i] for i in range(len(test_tup1)))
# Print the resulting tuple
print("The AND tuple: " + str(res)) |
#Output : The original tuple 1 : (10, 4, 6, 9) | Python - Elementwise AND in tuples
# Initialize input tuples
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
# Perform elementwise AND operation using a list comprehension and bitwise &
res = tuple(test_tup1[i] & test_tup2[i] for i in range(len(test_tup1)))
# Print the resulting tuple
print("The AND tuple: " + ... |
Python - Elementwise AND in tuples | https://www.geeksforgeeks.org/python-elementwise-and-in-tuples/ | test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
and_tuple = ()
for i in range(len(test_tup1)):
and_tuple += ((test_tup1[i] & test_tup2[i]),)
print("The AND tuple:", and_tuple) |
#Output : The original tuple 1 : (10, 4, 6, 9) | Python - Elementwise AND in tuples
test_tup1 = (10, 4, 6, 9)
test_tup2 = (5, 2, 3, 3)
and_tuple = ()
for i in range(len(test_tup1)):
and_tuple += ((test_tup1[i] & test_tup2[i]),)
print("The AND tuple:", and_tuple)
#Output : The original tuple 1 : (10, 4, 6, 9)
[END] |
Python | Sort Python Dictionaries by Key or Value | https://www.geeksforgeeks.org/python-sort-python-dictionaries-by-key-or-value/ | myDict = {"ravi": 10, "rajnish": 9, "sanjeev": 15, "yash": 2, "suraj": 32}
myKeys = list(myDict.keys())
myKeys.sort()
sorted_dict = {i: myDict[i] for i in myKeys}
print(sorted_dict) | Input:
{'ravi': 10, 'rajnish': 9, 'sanjeev': 15, 'yash': 2, 'suraj': 32} | Python | Sort Python Dictionaries by Key or Value
myDict = {"ravi": 10, "rajnish": 9, "sanjeev": 15, "yash": 2, "suraj": 32}
myKeys = list(myDict.keys())
myKeys.sort()
sorted_dict = {i: myDict[i] for i in myKeys}
print(sorted_dict)
Input:
{'ravi': 10, 'rajnish': 9, 'sanjeev': 15, 'yash': 2, 'suraj': 32}
[END] |
Python | Sort Python Dictionaries by Key or Value | https://www.geeksforgeeks.org/python-sort-python-dictionaries-by-key-or-value/ | # Function calling
def dictionary():
# Declare hash function
key_value = {}
# Initializing value
key_value[2] = 56
key_value[1] = 2
key_value[5] = 12
key_value[4] = 24
key_value[6] = 18
key_value[3] = 323
print("Task 1:-\n")
print("key_value", key_value)
# iterkeys() ... | Input:
{'ravi': 10, 'rajnish': 9, 'sanjeev': 15, 'yash': 2, 'suraj': 32} | Python | Sort Python Dictionaries by Key or Value
# Function calling
def dictionary():
# Declare hash function
key_value = {}
# Initializing value
key_value[2] = 56
key_value[1] = 2
key_value[5] = 12
key_value[4] = 24
key_value[6] = 18
key_value[3] = 323
print("Task 1:-\n")
... |
Python | Sort Python Dictionaries by Key or Value | https://www.geeksforgeeks.org/python-sort-python-dictionaries-by-key-or-value/ | # Creates a sorted dictionary (sorted by key)
from collections import OrderedDict
dict = {"ravi": "10", "rajnish": "9", "sanjeev": "15", "yash": "2", "suraj": "32"}
dict1 = OrderedDict(sorted(dict.items()))
print(dict1) | Input:
{'ravi': 10, 'rajnish': 9, 'sanjeev': 15, 'yash': 2, 'suraj': 32} | Python | Sort Python Dictionaries by Key or Value
# Creates a sorted dictionary (sorted by key)
from collections import OrderedDict
dict = {"ravi": "10", "rajnish": "9", "sanjeev": "15", "yash": "2", "suraj": "32"}
dict1 = OrderedDict(sorted(dict.items()))
print(dict1)
Input:
{'ravi': 10, 'rajnish': 9, 'sanjeev': 15, ... |
Python | Sort Python Dictionaries by Key or Value | https://www.geeksforgeeks.org/python-sort-python-dictionaries-by-key-or-value/ | # function calling
def dictionairy():
# Declaring the hash function
key_value = {}
# Initialize value
key_value[2] = 56
key_value[1] = 2
key_value[5] = 12
key_value[4] = 24
key_value[6] = 18
key_value[3] = 323
print("key_value", key_value)
print("Task 2:-\nKeys and Values ... | Input:
{'ravi': 10, 'rajnish': 9, 'sanjeev': 15, 'yash': 2, 'suraj': 32} | Python | Sort Python Dictionaries by Key or Value
# function calling
def dictionairy():
# Declaring the hash function
key_value = {}
# Initialize value
key_value[2] = 56
key_value[1] = 2
key_value[5] = 12
key_value[4] = 24
key_value[6] = 18
key_value[3] = 323
print("key_value",... |
Python | Sort Python Dictionaries by Key or Value | https://www.geeksforgeeks.org/python-sort-python-dictionaries-by-key-or-value/ | # Function calling
def dictionairy():
# Declaring hash function
key_value = {}
# Initializing the value
key_value[2] = 56
key_value[1] = 2
key_value[5] = 12
key_value[4] = 24
key_value[6] = 18
key_value[3] = 323
print("key_value", key_value)
print("Task 3:-\nKeys and Value... | Input:
{'ravi': 10, 'rajnish': 9, 'sanjeev': 15, 'yash': 2, 'suraj': 32} | Python | Sort Python Dictionaries by Key or Value
# Function calling
def dictionairy():
# Declaring hash function
key_value = {}
# Initializing the value
key_value[2] = 56
key_value[1] = 2
key_value[5] = 12
key_value[4] = 24
key_value[6] = 18
key_value[3] = 323
print("key_value... |
Python | Sort Python Dictionaries by Key or Value | https://www.geeksforgeeks.org/python-sort-python-dictionaries-by-key-or-value/ | # Creates a sorted dictionary (sorted by key)
from collections import OrderedDict
import numpy as np
dict = {"ravi": 10, "rajnish": 9, "sanjeev": 15, "yash": 2, "suraj": 32}
print(dict)
keys = list(dict.keys())
values = list(dict.values())
sorted_value_index = np.argsort(values)
sorted_dict = {keys[i]: values[i] for ... | Input:
{'ravi': 10, 'rajnish': 9, 'sanjeev': 15, 'yash': 2, 'suraj': 32} | Python | Sort Python Dictionaries by Key or Value
# Creates a sorted dictionary (sorted by key)
from collections import OrderedDict
import numpy as np
dict = {"ravi": 10, "rajnish": 9, "sanjeev": 15, "yash": 2, "suraj": 32}
print(dict)
keys = list(dict.keys())
values = list(dict.values())
sorted_value_index = np.args... |
Handling missing keys in Python dictionaries | https://www.geeksforgeeks.org/handling-missing-keys-python-dictionaries/ | # Python code to demonstrate Dictionary and
# missing value error
# initializing Dictionary
d = {"a": 1, "b": 2}
# trying to output value of absent key
print("The value associated with 'c' is : ")
print(d["c"]) |
#Output : Traceback (most recent call last): | Handling missing keys in Python dictionaries
# Python code to demonstrate Dictionary and
# missing value error
# initializing Dictionary
d = {"a": 1, "b": 2}
# trying to output value of absent key
print("The value associated with 'c' is : ")
print(d["c"])
#Output : Traceback (most recent call last):
[END] |
Handling missing keys in Python dictionaries | https://www.geeksforgeeks.org/handling-missing-keys-python-dictionaries/ | country_code = {"India": "0091", "Australia": "0025", "Nepal": "00977"}
# search dictionary for country code of India
print(country_code.get("India", "Not Found"))
# search dictionary for country code of Japan
print(country_code.get("Japan", "Not Found")) |
#Output : Traceback (most recent call last): | Handling missing keys in Python dictionaries
country_code = {"India": "0091", "Australia": "0025", "Nepal": "00977"}
# search dictionary for country code of India
print(country_code.get("India", "Not Found"))
# search dictionary for country code of Japan
print(country_code.get("Japan", "Not Found"))
#Output : Trac... |
Handling missing keys in Python dictionaries | https://www.geeksforgeeks.org/handling-missing-keys-python-dictionaries/ | country_code = {"India": "0091", "Australia": "0025", "Nepal": "00977"}
# Set a default value for Japan
country_code.setdefault("Japan", "Not Present")
# search dictionary for country code of India
print(country_code["India"])
# search dictionary for country code of Japan
print(country_code["Japan"]) |
#Output : Traceback (most recent call last): | Handling missing keys in Python dictionaries
country_code = {"India": "0091", "Australia": "0025", "Nepal": "00977"}
# Set a default value for Japan
country_code.setdefault("Japan", "Not Present")
# search dictionary for country code of India
print(country_code["India"])
# search dictionary for country code of Japan... |
Handling missing keys in Python dictionaries | https://www.geeksforgeeks.org/handling-missing-keys-python-dictionaries/ | # Python code to demonstrate defaultdict
# importing "collections" for defaultdict
import collections
# declaring defaultdict
# sets default value 'Key Not found' to absent keys
defd = collections.defaultdict(lambda: "Key Not found")
# initializing values
defd["a"] = 1
# initializing values
defd["b"] = 2
# printin... |
#Output : Traceback (most recent call last): | Handling missing keys in Python dictionaries
# Python code to demonstrate defaultdict
# importing "collections" for defaultdict
import collections
# declaring defaultdict
# sets default value 'Key Not found' to absent keys
defd = collections.defaultdict(lambda: "Key Not found")
# initializing values
defd["a"] = 1
#... |
Handling missing keys in Python dictionaries | https://www.geeksforgeeks.org/handling-missing-keys-python-dictionaries/ | country_code = {"India": "0091", "Australia": "0025", "Nepal": "00977"}
try:
print(country_code["India"])
print(country_code["USA"])
except KeyError:
print("Not Found") |
#Output : Traceback (most recent call last): | Handling missing keys in Python dictionaries
country_code = {"India": "0091", "Australia": "0025", "Nepal": "00977"}
try:
print(country_code["India"])
print(country_code["USA"])
except KeyError:
print("Not Found")
#Output : Traceback (most recent call last):
[END] |
Python dictionary with keys having multiple inputs | https://www.geeksforgeeks.org/python-dictionary-with-keys-having-multiple-inputs/ | # Python code to demonstrate a dictionary
# with multiple inputs in a key.
import random as rn
# creating an empty dictionary
dict = {}
# Insert first triplet in dictionary
x, y, z = 10, 20, 30
dict[x, y, z] = x + y - z
# Insert second triplet in dictionary
x, y, z = 5, 2, 4
dict[x, y, z] = x + y - z
# print the di... |
#Output : {(10, 20, 30): 0, (5, 2, 4): 3} | Python dictionary with keys having multiple inputs
# Python code to demonstrate a dictionary
# with multiple inputs in a key.
import random as rn
# creating an empty dictionary
dict = {}
# Insert first triplet in dictionary
x, y, z = 10, 20, 30
dict[x, y, z] = x + y - z
# Insert second triplet in dictionary
x, y, z ... |
Python dictionary with keys having multiple inputs | https://www.geeksforgeeks.org/python-dictionary-with-keys-having-multiple-inputs/ | # dictionary containing longitude and latitude of places
places = {("19.07'53.2", "72.54'51.0"): "Mumbai", ("28.33'34.1", "77.06'16.6"): "Delhi"}
print(places)
print("\n")
# Traversing dictionary with multi-keys and creating
# different lists from it
lat = []
long = []
plc = []
for i in places:
lat.append(i[0])
... |
#Output : {(10, 20, 30): 0, (5, 2, 4): 3} | Python dictionary with keys having multiple inputs
# dictionary containing longitude and latitude of places
places = {("19.07'53.2", "72.54'51.0"): "Mumbai", ("28.33'34.1", "77.06'16.6"): "Delhi"}
print(places)
print("\n")
# Traversing dictionary with multi-keys and creating
# different lists from it
lat = []
long = ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.