In this post, we will see how to count the number of lowercase and uppercase characters in a given string. Algorithm Step 1: Declare a…
Posts published in “python”
In this post, we will see how to sort the words of string lexicographically using python. Algorithm Step 1: Declare a String and store it…
In this post, we are going to look at the python program to convert an array to an ordinary list with the same items. Let’s…
In this post, we will look at the python program to remove the first occurrence of a specified element from an array. Let’s look at…
In this post, we will look at how to remove a specific item using the index from an array. Let’s look at example input and…
In this post, we will look at the python program to get the number of occurrences of a specified element in an array. There are…
In this post, we will discuss how to find the sum of an array in python. Sum of an array means adding each element that…
In this tutorial, we are going to look at how to convert kilometers to miles using python. Both kilometers and miles are units to measure…
In this post, we are going to look at how to append values to the list in python dictionary. Also, we will look at how…
To get the current time in python there are various ways. We will discuss about getting time using datetime, and timezone. The general idea is…