Finding All substrings Frequency in String Using Python

Priya Sharma
Updated on 27-Mar-2026 12:25:34

617 Views

String manipulation and analysis are fundamental tasks in many programming scenarios. One intriguing problem within this domain is the task of finding the frequency of all substrings within a given string. This article provides a comprehensive guide on efficiently accomplishing this task using Python. When working with strings, it is often necessary to analyze their contents and extract valuable information. The frequency of substrings is an important metric that can reveal patterns, repetitions, or insights into the structure of the string. By determining how many times each substring appears in a given string, we can gain valuable knowledge about ... Read More

Finding All possible space joins in a String Using Python

Priya Sharma
Updated on 27-Mar-2026 12:25:07

299 Views

In natural language processing and text manipulation, finding all possible space joins in a string means generating every combination of a string with spaces inserted at different positions. This technique is useful for exploring word arrangements, text analysis, and generating permutations. Problem Statement Given a string, we want to generate all possible combinations by inserting spaces between characters. For example, with the string "abc", we can create combinations like "abc", "ab c", "a bc", and "a b c". Using Recursive Backtracking The most straightforward approach uses recursive backtracking. At each character position, we have two choices: ... Read More

Difference between Lock and Rlock objects

Priya Sharma
Updated on 27-Mar-2026 12:24:36

1K+ Views

Concurrent programming involves the execution of multiple threads or processes concurrently, which can lead to challenges such as race conditions and data inconsistencies. To address these issues, Python provides synchronization primitives, including the Lock and RLock objects. While both objects serve the purpose of controlling access to shared resources, they differ in behavior and usage. The Lock object is a fundamental mutual exclusion mechanism. It allows multiple threads to acquire and release the lock, but only one thread can hold the lock at any given time. When a thread attempts to acquire a lock that is already held by ... Read More

AttributeError in Python

Priya Sharma
Updated on 27-Mar-2026 12:24:12

515 Views

Python is a versatile and powerful programming language that allows developers to build a wide range of applications. However, like any programming language, Python is not immune to errors. One common error that developers encounter is the AttributeError. Let's explore what an AttributeError is, why it occurs, and how to handle it effectively. What is an AttributeError? An AttributeError is an exception that occurs when an object does not have a particular attribute or method that is being accessed. It is raised when an invalid attribute reference or assignment is made to an object. # Example ... Read More

Age Calculator using Python Tkinter

Tapas Kumar Ghosh
Updated on 27-Mar-2026 12:23:44

2K+ Views

An age calculator in Python using Tkinter is a GUI (Graphical User Interface) application that allows users to determine their age based on their date of birth (DOB). To design the user interface of this application, we use various methods provided by the Tkinter library such as Tk(), pack(), Entry(), Button(), and more. GUI of Age Calculator Let us build a GUI-based age calculator where the user can enter their date of birth in the format of YYYY-MM-DD. The application will calculate and display the age in years, months, and days. ... Read More

Adding Custom Values Key in a List of Dictionaries in Python

Disha Verma
Updated on 27-Mar-2026 12:23:18

405 Views

In this article, we will learn how to add a custom key with corresponding values to a list of dictionaries in Python. This is a common task when working with structured data. Dictionaries in Python are collections of unordered items stored in the form of key-value pairs inside curly braces ? dictionary = {"key": "value", "name": "John"} print(dictionary) {'key': 'value', 'name': 'John'} Suppose we have a list of dictionaries called dict_list and a key new_key, with its values provided in a separate list value_list. The goal is to add new_key to each ... Read More

Adding action to CheckBox using PyQt5

Priya Sharma
Updated on 27-Mar-2026 12:22:53

1K+ Views

Graphical User Interface (GUI) frameworks provide developers with the tools and capabilities to create visually appealing and interactive applications. PyQt5, a Python binding for the Qt framework, offers a robust toolkit for building GUI applications with ease. Among the fundamental components offered by PyQt5 is the CheckBox, a widget that allows users to select or deselect an option. By adding actions to CheckBoxes, we can enhance the functionality and interactivity of our applications. This feature enables us to perform specific tasks or trigger events based on the state of the CheckBox. Whether it is enabling or disabling a feature, ... Read More

Filter key from Nested item using Python

Tapas Kumar Ghosh
Updated on 27-Mar-2026 12:22:28

1K+ Views

Python can extract specific values from complex data structures containing nested dictionaries or lists by filtering keys from nested items. This technique is essential for data manipulation, API response processing, and configuration parsing where you need to work with specific parts of complex data structures. Key Methods The following built-in methods are commonly used for filtering nested data ? isinstance() Checks whether an object is an instance of a specific class or type ? data = {"name": "John"} print(isinstance(data, dict)) print(isinstance([1, 2, 3], list)) True True items() Returns key-value pairs ... Read More

Python - Find Minimum Pair Sum in list

Tapas Kumar Ghosh
Updated on 27-Mar-2026 12:22:03

824 Views

The Minimum pair sum is defined by finding the smallest possible sum of two numbers taken from a given list. This concept is useful in optimization problems where you need to minimize costs, distances, or time for operations. Python provides several approaches to solve this using built-in functions like sort(), combinations(), and float(). Using Nested for Loop This approach uses nested loops to iterate through all possible pairs and track the minimum sum ? def min_pair(nums): min_sum = float('inf') min_pair = () ... Read More

Python - Find Index Containing String in List

Tapas Kumar Ghosh
Updated on 27-Mar-2026 12:21:43

2K+ Views

When working with mixed-type lists in Python, you often need to find the indices containing strings. This is useful for text parsing, pattern matching, and extracting specific information from data structures. Here's an example scenario: my_list = [108, 'Safari', 'Skybags', 20, 60, 'Aristocrat', 78, 'Raj'] print("Original list:", my_list) Original list: [108, 'Safari', 'Skybags', 20, 60, 'Aristocrat', 78, 'Raj'] The goal is to find indices 1, 2, 5, 7 where strings are located in this mixed list. Using for loop with type() function The most straightforward approach uses a for loop ... Read More

Advertisements