Found 26504 Articles for Server Side Programming

Sort tuple based on occurrence of first element in Python

AmitDiwan
Updated on 13-Mar-2021 05:35:26

198 Views

When it is required to sort the tuple based on the occurrence of the first element, the dict.fromkeys method can be used.A list can be used to store heterogeneous values (i.e data of any data type like integer, floating point, strings, and so on).A list of tuple basically contains tuples enclosed in a list.The 'dict.fromkeys' method will return a dictionary with a specific key and a value.Below is a demonstration for the same −ExampleLive Demodef sort_on_occurence(my_lst):    my_dict = {}    for i, j in my_lst:       my_dict.setdefault(i, []).append(j)    return([(i, *dict.fromkeys(j), len(j))       for i, ... Read More

Removing strings from tuple in Python

AmitDiwan
Updated on 13-Mar-2021 05:32:44

685 Views

When it is required to remove the strings froma  tuple, the list comprehension and the 'type' method can be used.A list can be used to store heterogeneous values (i.e data of any data type like integer, floating point, strings, and so on).A list of tuple basically contains tuples enclosed in a list.The list comprehension is a shorthand to iterate through the list and perform operations on it.The 'type' method returns the class of the iterable passed to it as an argument.Below is a demonstration for the same −ExampleLive Demomy_list = [('Hi', 45, 67), ('There', 45, 32), ('Jane', 59, 13)] ... Read More

Summation of list as tuple attribute in Python

AmitDiwan
Updated on 13-Mar-2021 05:32:21

239 Views

When it is required to get the summation of a list of tuple, the list comprehension and the 'sum' method can be used.A list can be used to store heterogeneous values (i.e data of any data type like integer, floating point, strings, and so on).A list of tuple basically contains tuples enclosed in a list.The list comprehension is a shorthand to iterate through the list and perform operations on it.The 'sum' method is used to add the elements of an iterable, where the iterable is passed as an argument to the method.Below is a demonstration for the same −ExampleLive Demomy_list ... Read More

Grouped summation of tuple list in Python

AmitDiwan
Updated on 13-Mar-2021 05:32:00

178 Views

When it is required to find the grouped summation of a list of tuple, the 'Counter' method and the '+' operator need to be used.The 'Counter' is a sub-class that helps count hashable objects, i.e it creates a hash table on its own (of an iterable- like a list, tuple, and so on) when it is invoked.It returns an itertool for all of the elements with a non-zero value as the count.The '+' operator can be used to add numeric values or concatenate strings.Below is a demonstration for the same −ExampleLive Demofrom collections import Counter my_list_1 = [('Hi', 14), ... Read More

Reverse each tuple in a list of tuples in Python

AmitDiwan
Updated on 13-Mar-2021 05:31:30

306 Views

When it is required to reverse each tuple in a list of tuples, the negative step slicing can be used.A list can be used to store heterogeneous values (i.e data of any data type like integer, floating point, strings, and so on). A list of tuple basically contains tuples enclosed in a list.In negative slicing, the index is accessed using negative numbers, instead of positive ones.Below is a demonstration for the same −ExampleLive Demodef reverse_tuple(my_tuple):    return [tup[::-1] for tup in my_tuple]           my_list = [(21, 22), (43, 74, 45), (76, 17, 98, 19)] print("The list ... Read More

Python program to check whether the string is Symmetrical or Palindrome

AmitDiwan
Updated on 12-Mar-2021 13:09:01

2K+ Views

When it is required to check if a string is symmetrical or it is a palindrome, a method can be defined, that uses the ‘while’ condition. Another method is defined to check the symmetry that uses the ‘while’ and ‘if’ conditions too.A palindrome is a number or string, which when read from left to right or right to left is the same value. The index values are the same.ExampleBelow is a demonstration for the same − Live Demodef check_palindrome(my_str):    mid_val = (len(my_str)-1)//2    start = 0    end = len(my_str)-1    flag = 0    while(start

Python Program to Determine How Many Times a Given Letter Occurs in a String Recursively

AmitDiwan
Updated on 12-Mar-2021 13:04:59

755 Views

When it is required to check the number of times a given letter occurs in a string using recursion, a method can be defined, and an ‘if’ condition can be used.The recursion computes output of small bits of the bigger problem, and combines these bits to give the solution to the bigger problem.ExampleBelow is a demonstration for the same − Live Demodef check_frequency(my_str, my_ch):    if not my_str:       return 0    elif my_str[0]==my_ch:       return 1+check_frequency(my_str[1:], my_ch)    else:       return check_frequency(my_str[1:], my_ch) my_string = input("Enter the string :") my_char = input("Enter the character ... Read More

Python Program to Determine Whether a Given Number is Even or Odd Recursively

AmitDiwan
Updated on 12-Mar-2021 13:03:21

867 Views

When it is required to check if a given number is an odd number or an even number using recursion, recursion can be used.The recursion computes output of small bits of the bigger problem, and combines these bits to give the solution to the bigger problem.ExampleBelow is a demonstration for the same − Live Demodef check_odd_even(my_num):    if (my_num < 2):       return (my_num % 2 == 0)    return (check_odd_even(my_num - 2)) my_number = int(input("Enter the number that needs to be checked:")) if(check_odd_even(my_number)==True):    print("The number is even") else:    print("The number is odd!")OutputEnter the number that needs ... Read More

Python Program that Displays which Letters are in the Two Strings but not in Both

AmitDiwan
Updated on 12-Mar-2021 13:01:30

290 Views

When it is required to display the letters that occur in both strings separately, but are not repeated, the user input is taken, and the ‘list’ and ‘set’ are used to achieve the same.A list can be used to store heterogeneous values (i.e data of any data type like integer, floating point, strings, and so on). The ‘list’ method converts a given iterable to a list type.Python comes with a datatype known as ‘set’. This ‘set’ contains elements that are unique only.The set is useful in performing operations such as intersection, difference, union and symmetric difference.ExampleBelow is a demonstration for ... Read More

Python Program that Displays which Letters are in the First String but not in the Second

AmitDiwan
Updated on 12-Mar-2021 13:00:07

470 Views

When it is required to display the letters that are present in the first string but not in the second string, two string inputs are taken from user. The ‘set’ is used to find the difference between the two strings.Python comes with a datatype known as ‘set’. This ‘set’ contains elements that are unique only.The set is useful in performing operations such as intersection, difference, union and symmetric difference.ExampleBelow is a demonstration for the same − Live Demomy_str_1 = input("Enter the first string...") my_str_2 = input("Enter the second string...") my_result = list(set(my_str_1)-set(my_str_2)) print("The letters in first string but not in second ... Read More

Advertisements