Articles on Trending Technologies

Technical articles with clear explanations and examples

Python - Intersection of two String

Hafeezul Kareem
Hafeezul Kareem
Updated on 25-Mar-2026 4K+ Views

String intersection finds the common characters between two strings. Python offers multiple approaches: iterating through characters or using set operations for efficient intersection. Using Character Iteration This method iterates through the first string and adds characters that exist in both strings while maintaining order ? # initializing the string string_1 = 'tutorialspoint' string_2 = 'tut' result = '' # finding the common chars from both strings for char in string_1: if char in string_2 and not char in result: result += char ...

Read More

Python - Join tuple elements in a list

Hafeezul Kareem
Hafeezul Kareem
Updated on 25-Mar-2026 11K+ Views

In this article, we are going to learn how to join tuple elements in a list. Python provides several approaches to convert tuples containing strings into joined strings using methods like join() and map(). Using map() with a Custom Function Create a function to join tuple elements and apply it to all tuples using map() ? # initializing the list with tuples string_tuples = [('A', 'B', 'C'), ('Tutorialspoint', 'is a', 'popular', 'site', 'for tech learnings')] # function that converts tuple to string def join_tuple_string(strings_tuple): return ' '.join(strings_tuple) # joining all ...

Read More

Python - Joining only adjacent words in list

Hafeezul Kareem
Hafeezul Kareem
Updated on 25-Mar-2026 381 Views

In this article, we are going to learn how to join adjacent words in a list while keeping digits separate. This technique is useful when processing mixed data that contains both text and numeric values. Approach To solve this problem, we need to ? Initialize the list with mixed string and numeric elements Separate words from digits using isalpha() and isdigit() methods Join all the words together using the join() method Add all digits to the result list while maintaining their order Using List Comprehension The most straightforward approach uses list comprehension to ...

Read More

Python - Joining unicode list elements

Hafeezul Kareem
Hafeezul Kareem
Updated on 25-Mar-2026 487 Views

In Python, when working with Unicode strings, you might need to join list elements that contain Unicode characters. This is straightforward in Python 3 since all strings are Unicode by default. Basic Unicode String Joining The simplest way to join Unicode strings is using the join() method ? # Unicode strings with special characters unicode_strings = ['Hello', 'Wörld', 'Pythön', '🐍'] # Join with space separator result = ' '.join(unicode_strings) print(result) Hello Wörld Pythön 🐍 Joining Mixed Content Lists When your list contains mixed data types, convert them to strings ...

Read More

Python - Largest number possible from list of given numbers

Hafeezul Kareem
Hafeezul Kareem
Updated on 25-Mar-2026 2K+ Views

In this article, we will learn how to find the largest possible number from a given list of numbers by arranging them optimally. We'll explore two different approaches to solve this problem effectively. Method 1: Using itertools.permutations The first approach generates all possible permutations of the numbers and finds the maximum value ? import itertools # initializing the list numbers = [45, 35, 138, 43, 67] # result list to store all permutations result = [] # generate all permutations and join them as strings for permutation in itertools.permutations(str(number) for number in numbers): ...

Read More

Last occurrence of some element in a list in Python

Hafeezul Kareem
Hafeezul Kareem
Updated on 25-Mar-2026 11K+ Views

Finding the last occurrence of an element in a list is a common task in Python. There are several efficient approaches to accomplish this, each with different advantages depending on your specific needs. Using Reverse and Index Method The first approach reverses the list and finds the first occurrence, then calculates the original position ? # initializing the list words = ['eat', 'sleep', 'drink', 'sleep', 'drink', 'sleep', 'go', 'come'] element = 'sleep' # reversing the list words.reverse() # finding the index of element index = words.index(element) # printing the final index final_index = ...

Read More

Linear search on list or tuples in Python

Hafeezul Kareem
Hafeezul Kareem
Updated on 25-Mar-2026 4K+ Views

Linear search is a simple algorithm that searches for an element by checking each item in a sequence from start to end. In Python, we can implement linear search for both lists and tuples using the same approach since both are iterable sequences. A linear search starts from the first element and continues until it finds the target element or reaches the end of the sequence. It's the most straightforward searching algorithm with O(n) time complexity. How Linear Search Works The algorithm follows these steps: Start from the first element of the list or tuple ...

Read More

List consisting of all the alternate elements in Python

Hafeezul Kareem
Hafeezul Kareem
Updated on 25-Mar-2026 3K+ Views

In Python, getting alternate elements from a list means extracting every second element, typically starting from either index 0 (even positions) or index 1 (odd positions). This article demonstrates two efficient methods to accomplish this task. Method 1: Using List Comprehension with Range This approach uses list comprehension combined with range and modulo operator to filter elements at odd indices − # Initializing the list numbers = [1, 2, 3, 4, 5, 6, 7, 8] # Finding alternate elements (odd indices) result = [numbers[i] for i in range(len(numbers)) if i % 2 != 0] ...

Read More

List expansion by K in Python

Hafeezul Kareem
Hafeezul Kareem
Updated on 25-Mar-2026 273 Views

In this article, we are going to learn how to expand a list by replicating each element K times. We'll explore two different approaches to solve this problem efficiently. Method 1: Using List Replication Operator This method uses the multiplication operator to replicate elements and concatenates them to build the expanded list ? # initializing the list numbers = [1, 2, 3] K = 5 # empty list result = [] # expanding the list for i in numbers: result += [i] * K # printing the list print(result) ...

Read More

Python - List Initialization with alternate 0s and 1s

Hafeezul Kareem
Hafeezul Kareem
Updated on 25-Mar-2026 1K+ Views

In this article, we will learn how to initialize a list with alternate 0s and 1s. Given a list length, we need to create a list where elements alternate between 1 and 0 starting with 1. Method 1: Using a For Loop The simplest approach is to iterate through the range and append values based on whether the index is even or odd ? # initializing an empty list result = [] length = 7 # iterating through the range for i in range(length): # checking if index is even or ...

Read More
Showing 6081–6090 of 61,297 articles
« Prev 1 607 608 609 610 611 6130 Next »
Advertisements