Tapas Kumar Ghosh has Published 150 Articles

How to embed audio element in a HTML document ?

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 08-Jun-2023 12:36:59

3K+ Views

HTML has an audio element that can be used to embed audio element in a HTML document. By including an audio track or sound effect on a webpage, the user experience can be improved by including audio elements in HTML documents. Simply include the element in our HTML code ... Read More

How to design Meet the Team Page using HTML and CSS

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 08-Jun-2023 12:34:21

1K+ Views

In this article, we will learn how to design “Meet the team” page using the various properties of HTML and CSS. The team Page plays a very important role while creating websites for any business or organization. People from different countries connect the business through a team member. The team ... Read More

Python Program to remove the last specified character from the string

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 01-Jun-2023 15:58:34

768 Views

Text data manipulation and processing can benefit from using a Python program that will eliminate the last specified character from a string. This kind of application can be used to modify data by deleting particular characters, validate user input by removing incorrect characters, and clean up the text by removing ... Read More

Python Program to replace the string by specified character

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 01-Jun-2023 15:57:17

209 Views

Replacing characters in a string with specified characters is a common text-processing method with many different applications. There are some examples like Data transformation, text normalization, and data cleansing. In Python, we have some string in-built functions that can be used to convert a string into an array of characters ... Read More

Python Program to trim a string from both sides

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 01-Jun-2023 15:55:58

711 Views

Python has inbuild functions like lstrip(), strip(), and rstrip() that can be used to remove the character from both sides. The term trim the string of characters means to remove the character from the given string. For example − Given string is ‘iiiiiiiiiiiBOXERiiiiiiiiii’ and the character ‘i’ from both sides. ... Read More

Python Program to Format time in AM-PM format

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 01-Jun-2023 15:54:19

9K+ Views

In Python, we have some time built-in functions like strftime() and datetime.now() that can be used to find the time in AM/PM format. The format time in AM/PM format uses various applications such as user interface, report & document, data visualization, and event scheduling. We will speak the time of ... Read More

Python Program to convert the string into an array of character

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 01-Jun-2023 15:53:01

6K+ Views

In this article, we will learn how to develop a Python program using append(), extend(), and list() that will convert the given string into an array of characters. In this program, the array of characters represents the group of individual characters that break from the string. Syntax The following syntax ... Read More

Python program to convert local time into GMT

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 01-Jun-2023 15:51:25

4K+ Views

When we are creating a web service that allows users all over the world to book events, we might use this program to convert each user's local time to GMT before putting it in our database. This would make comparing and displaying event times easier for users in different time ... Read More

How to sort a Numpy Array?

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 01-Jun-2023 15:49:36

443 Views

The term "array" typically refers to a list. There are some similarities between NumPy arrays and Python lists, but there are also significant variations in data formats, memory utilization, performance, and functionality. In Python, we have some array in-built functions that can be used to sort a Numpy Array. The ... Read More

Python Program to trim a string from the right side

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 01-Jun-2023 15:48:14

270 Views

In Python, we have a predefined function rstrip() to remove the character from the right side. It means it will remove the whitespace from the rightside side of the string. Let’s take an example to understand the trim of a string from the left side. In the given string ... Read More

Advertisements