top of page
Search


What are different types of Loops in Python?
Programming languages provide various control structures that allow for more complicated execution paths. A loop statement allows us to...

The Tech Platform
Oct 14, 2022


Write a Python program to repeat specific Characters in String
To Repeat all the Characters string = "thetechplatform" n = 2 repeated_characters = ''.join([character*n for character in string])...

The Tech Platform
Jun 28, 2022


How to raise a number to a power - Python
In Mathematical terms, an exponent refers to a number that is placed as a superscript of a number. It says how many times the base number...

The Tech Platform
Jun 17, 2022


Python program to Convert Hours to Seconds
Convert Hours to Seconds In this program, we need to multiply hours with 60 (1 hour = 60 minutes ) so that we get in minutes, and once we...

The Tech Platform
Jun 17, 2022


10 Python String Processing Tips & Tricks
In this article, we will learn about the string processing and tips & tricks used for string processing in python. What is String...

The Tech Platform
Dec 13, 2021
bottom of page