top of page
Search

Difference between C++, Java and Python.
C++ C++ is a general purpose programming language and widely used now a days for competitive programming. It has imperative,...
The Tech Platform
Jul 17, 2021

How to use Plotly as Pandas Plotting Backend
Libraries in the Scipy Stack work seamlessly together. In terms of visualization, the relationship between pandas and maltplotlib clearly...
The Tech Platform
Jul 15, 2021


The Pros and Cons of using Python for Web Development
Python is an interpreted, object - oriented and high - level programming language with dynamic semantics. High level build in Data...
The Tech Platform
Jul 14, 2021


What is Python Docker? Importance and Ways to Use Python with Docker
Docker is an open-source tool that automates the deployment of an application inside a software container. The easiest way to grasp the...
The Tech Platform
Jun 29, 2021

Write a Program to Print Today's Date in Python
Code: Without strftime() method from datetime import date today = date.today() print("Today's date:", today) We use the strftime()...
The Tech Platform
Jun 14, 2021

Write a Program to Create Empty Star Pattern in Python
Code: n = int(input('Enter the number of rows:')) i = 1 while i <= n: j = n while j > i: # display space print(' ', end= ' ') j -= 1...
The Tech Platform
Jun 13, 2021

Write a Program to make Star Design Pattern in Python.
Patters in python are printed using for loops. Different numeric, alphabetic or symbolic patterns can be formed using these loops by...
The Tech Platform
Jun 13, 2021

Installing Stratis Full Node On Raspberry Pi
The Raspberry Pi Foundation is a UK-based registered educational charity. The Raspberry Pi is a small, low-cost computer the size of a...
The Tech Platform
May 29, 2021

How We Added Raspberry Pi Support to Our .NET SDK
Raspberry Pi is a small single-board computer that has gained popularity in recent years. Its low cost, small size, and versatility make...
The Tech Platform
May 20, 2021

Find yesterday’s, today’s and tomorrow’s date in Python
We can handle Data objects by importing the module datetime and timedelta to work with dates. datetime module helps to find the present...
The Tech Platform
May 10, 2021
bottom of page