Tapas Kumar Ghosh has Published 185 Articles

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

2K+ 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

1K+ 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 trim a string from both sides

Tapas Kumar Ghosh

Tapas Kumar Ghosh

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

1K+ 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

13K+ 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 local time into GMT

Tapas Kumar Ghosh

Tapas Kumar Ghosh

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

7K+ 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

Python Program to convert the array of characters into the string

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 01-Jun-2023 15:40:08

10K+ Views

In Python, we have some built-in functions like join(), map(), reduce(), and len() that can be used to convert the array of characters into the string. The array of characters is defined by breaking each character from the string. Python has a predefined method join() to join all the characters ... Read More

Python Program to Print all the Pattern that Matches Given Pattern From a File

Tapas Kumar Ghosh

Tapas Kumar Ghosh

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

361 Views

Finding lines in a file that match a particular pattern is a typical operation with many applications, such as log analysis, text processing, and data filtering. In this article, we will discuss the Python Program to Print all the Pattern that Matches Given Pattern From a File. To solve this ... Read More

Python Program to demonstrate the time arithmetic

Tapas Kumar Ghosh

Tapas Kumar Ghosh

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

275 Views

The process of conducting mathematical operations on time values is referred to as time arithmetic. Adding or subtracting time durations, determining the difference between two-time values, or determining the average of a group of time values are a few examples of time arithmetic. Some of the applications are used to ... Read More

Python Program to Convert Milliseconds to Minutes and Seconds

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 01-Jun-2023 15:30:10

6K+ Views

In Python, we have a built-in function int(), timedelta(), and divmod() that can be used to get the number in the form integer and is useful for converting Miliseconds to Minutes and seconds. The milliseconds are defined by the short duration of time. The milliseconds are equal to one-thousandth ... Read More

Python Program to Read and printing all files from a zip file

Tapas Kumar Ghosh

Tapas Kumar Ghosh

Updated on 01-Jun-2023 15:26:00

7K+ Views

Multiple files are compressed together and stored in a single file format called a zip file. There are some applications such as file management, data processing, file conversion, and backup & archive of files. In Python, we have zip in-built functions like infolist() and namelist() that can be used to ... Read More

Advertisements