Found 34488 Articles for Programming

How to Create Acronyms from Words Using Python

Atharva Shah
Updated on 09-Aug-2023 16:39:36

2K+ Views

In programming and data processing, an acronym is an abbreviated version of a sentence. Python is an effective language for constructing acronyms, simplifying tasks, and conveying larger sentences simply. This lesson shows how to make acronyms out of words using Python and some of its potential applications. Algorithm You need to install any additional packages to run the below codes. Start off with an empty string to hold the acronym. Using the split() function, divide the supplied sentence into distinct words. ... Read More

Python - Create a string made of the first and last two characters from a given string

Atharva Shah
Updated on 09-Aug-2023 16:35:01

2K+ Views

This tutorial is all about string slicing. This involves creating a new string using the first and last two characters of a given string. Examples include using string slicing to extract the first two characters of a string. Such as "he" and "lo, " and combining these slices to create a new string with the first and last two characters. String manipulation methods prove handy while working with large strings or performing specific operations on a string's individual components. Let us explore several ways to handle this. Algorithm Begin with the string that has ... Read More

Removing Odd Elements From List in Python

Sai Mohan Pulamolu
Updated on 09-Aug-2023 16:32:39

3K+ Views

In Python, lists are a versatile data structure that allows you to store and manipulate collections of items. There may be use cases where you need to remove specific elements from a list based on certain criteria. In this tutorial, we will learn how to remove odd elements from a list in Python. Using a For Loop and remove() method The approach is to use a for loop to iterate through each element of the list and check if the element is odd or even and then use the remove() method to remove it from the list. Syntax remove() remove(item) ... Read More

How to Create a List of Tuples in Python?

Atharva Shah
Updated on 09-Aug-2023 16:28:05

138 Views

In Python, creating a list of tuples is a flexible data structure for storing many items. Tuples are immutable, ordered collections that are suitable for grouping similar items. This tutorial will guide you through this with several examples to build and handle lists of tuples. Understanding Tuples Tuples are ordered collections of elements. Lists are mutable collections of elements enclosed in square brackets, that combine with tuples to form a list of tuples. List comprehension gives compact code. It also unpacks and assigns variables to each member necessary for quick access. Nesting tuples within lists ... Read More

Python - Odd Frequency Characters

Sai Mohan Pulamolu
Updated on 09-Aug-2023 16:29:38

217 Views

In Python, fetching characters with odd frequencies from a given string can be a very common task in text processing and data analysis. In this article, we will learn various methods to fetch the odd frequency characters of a string in Python. Using a Dictionary Dictionaries are very convenient when there is a need to keep track of the frequencies of elements Approach To get the odd frequency elements, We will iterate through the entire string, and for each character in the string, we will increment the character count in the dictionary. At the end of the iteration, we will ... Read More

Create a box in Python GTK+ 3

Atharva Shah
Updated on 09-Aug-2023 16:26:52

852 Views

GTK+ 3 is a sophisticated and used graphical user interface library (GUIs). It comes with an extensive range of tools and widgets for creating cross-platform interactive and appealing apps. Let us concentrate on the fundamentals of GTK+ 3 and its box layout to manage and arrange widgets within a window. Setup Windows users require the Windows Subsystem for Linux (WSL). It uses Linux commands and PyGObject in Windows contexts. This simplifies access to libraries and GObject Introspection bindings. When you have it: pip install PyGObject sudo apt install libcairo2-dev python3-gi gir1.2-gtk-3.0gcc libgirepository1.0-dev gobject-introspection pkg-config ... Read More

Shortest distance between given Nodes in a Bidirectional Weighted Graph by Removing any K Edges

Pranavnath
Updated on 09-Aug-2023 16:05:11

132 Views

Introduction This C program calculates the most limited separation between two given hubs in a bidirectional weighted chart by evacuating any K edges. It utilizes an altered form of Dijkstra's calculation, considering the expulsion of K edges as a limitation. The program utilizes a need line for effective hub determination, and powerfully alters the edge weights based on the expulsion imperative. By navigating the chart and finding the briefest way, it gives the least remove between the given hubs whereas bookkeeping for the expulsion of K edges. Approach 1: Modified Dijkstra's Algorithm Algorithm Step 1: Create a structure ... Read More

Opening Links Using Selenium in Python

Sai Mohan Pulamolu
Updated on 09-Aug-2023 16:35:59

1K+ Views

When working with automation tasks, opening links programmatically is a very common requirement. Selenium, a popular web testing framework, provides powerful tools to handle web pages and perform various actions like opening links and etc. In this article, we will learn various methods to open links in Selenium using Python. Prerequisites Before we get started just make sure that you have the following software installed: Python: Install Python, if you haven't already. Selenium: Install Selenium by running pip install selenium in your command prompt. Web Driver: Selenium requires a web driver to interface with the chosen browser. You need to download ... Read More

C program to implement DFS traversal using Adjacency Matrix in a given Graph

Pranavnath
Updated on 09-Aug-2023 15:58:59

3K+ Views

Introduction Graph theory allows us to study and visualize relationships between objects or entities. In the current technology of computer science, graph traversal plays a crucial role in exploring and analyzing different types of data structures. One of the crucial operations performed on graphs is traversal - visiting all vertices or nodes, following specific paths. DFS traversal, based on a depth-first approach, allows us to explore the depths of a graph before backtracking and exploring other branches. In this article, we will involve in implementing DFS traversal using an adjacency matrix representation in C. DFS traversal using Adjacency Matrix ... Read More

Iterate Through List of Dictionaries in Python

Sai Mohan Pulamolu
Updated on 09-Aug-2023 16:08:16

5K+ Views

In this article, we will learn various methods to iterate through the list of dictionaries in Python. When working with data in Python, it is very common to encounter scenarios where you have a list of dictionaries. Each dictionary represents an individual data entry, and you need to perform operations or extract specific information from these dictionaries. Using a For Loop and Dictionary Access Methods The approach is to use a for loop to iterate through each dictionary in the list. Inside the loop, we can use dictionary access methods like keys(), values(), or items() to retrieve the keys, values, ... Read More

Advertisements