top of page
Search
The Tech Platform
May 9, 2021
Write the Program to get the Current Time in Python
There are Multiple of ways through which you can get the current time and this is one of simplest way. from datetime import * import pytz...
The Tech Platform
May 3, 2021
3 Uses of the Ellipsis in Python
Python has a special built-in singleton object called “Ellipsis”. If we input three dots or the word “Ellipsis” in a Python interactive...
The Tech Platform
May 3, 2021
Python Jupyter Notebooks in Excel
Embed Jupyter into Microsoft Excel and write Python instead of VBA Jupyter Notebooks in Microsoft Excel. Image by the author. It used to...
The Tech Platform
Apr 21, 2021
Write a program to print numbers from 1 to 100?
Below is the program to print the Numbers from 1 to 100 in C++, C, Python3, C#, PHP and JavaScript. C++ // C++ program to How will you...
The Tech Platform
Apr 9, 2021
Python Programming Language
Python is a powerful general-purpose programming language. It is used in web development, data science, creating software prototypes, and...
The Tech Platform
Apr 7, 2021
Handling Passwords and Secret Keys using Environment Variables
The simplest way and the wrong way to handle these important credentials is to hardcode it in our code. When you push the code to the...
The Tech Platform
Apr 6, 2021
Python Frameworks and REST API
In this article, I perform a comparative study on building a basic REST API using major Python-based frameworks — Django, Flask, and...
The Tech Platform
Apr 6, 2021
Setting up Quantiacs
Quantiacs supports offline development of trading systems in Python 3 and Matlab which requires downloading the toolbox. Running your...
The Tech Platform
Apr 6, 2021
First Steps with Quantiacs: Code a Trend-Following System in Python
To begin, import numpy and define the function: “myTradingSystem”. The function which will be used by the Quantiacs toolbox for...
The Tech Platform
Apr 1, 2021
UIs in Python with PySimpleGUI
I’ve tried so many UI libraries over the years that I usually start with a simple program to get a feel for the API, the script is a...
bottom of page