top of page
Search
The Tech Platform
Aug 1, 2022
Network Graph in Python
A network graph is a chart that displays relations between elements (nodes) using simple links. Network graph allows us to visualize...
The Tech Platform
Jul 28, 2022
Program to make Calculator in Python
Create a simple calculator which can perform basic arithmetic operations like addition, subtraction, multiplication, or division...
The Tech Platform
Jul 15, 2022
Introduction to Namespace in Python
A namespace is a system that has a unique name for each and every object in Python. An object might be a variable or a method. Python...
The Tech Platform
Jul 4, 2022
Programming Languages: Types of Programming Language.
A programming language is any set of rules that converts strings, or graphical program elements in the case of visual programming...
The Tech Platform
Jun 28, 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 26, 2022
Tools for good code
Code quality tools are automated tools/programs that would observe the code and point out any common issue/problem which could arise as a...
The Tech Platform
Jun 17, 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 16, 2022
How to review your code?
Code review happens when another developer goes through you or your team's code line-by-line and provides constructive, helpful feedback....
The Tech Platform
Jun 14, 2022
Write a Program to Convert Number to Words in Python
Example 1, we are going to convert a number to its wording. For instance, if the number is 12, the wordings will be “one-two”. A similar...
bottom of page