Sai Mohan Pulamolu has Published 5 Articles

Opening Links Using Selenium in Python

Sai Mohan Pulamolu

Sai Mohan Pulamolu

Updated on 09-Aug-2023 16:35:59

851 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. ... Read More

Removing Odd Elements From List in Python

Sai Mohan Pulamolu

Sai Mohan Pulamolu

Updated on 09-Aug-2023 16:32:39

2K+ 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 ... Read More

Python - Odd Frequency Characters

Sai Mohan Pulamolu

Sai Mohan Pulamolu

Updated on 09-Aug-2023 16:29:38

152 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 ... Read More

Iterate Through List of Dictionaries in Python

Sai Mohan Pulamolu

Sai Mohan Pulamolu

Updated on 09-Aug-2023 16:08:16

4K+ 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 ... Read More

Iterate Over Words of a String in Python

Sai Mohan Pulamolu

Sai Mohan Pulamolu

Updated on 09-Aug-2023 15:56:15

474 Views

In this article, we will learn various methods to iterate over words of a string in Python. Understanding how to access and manipulate words in a string is a very important skill for any Python programmer, as it allows for efficient text processing and analysis. We will discuss the problem ... Read More

1
Advertisements