top of page
Search


Automate Microsoft Excel and Word Using Python
By automating Excel and word tasks, you can save time, reduce errors, and increase productivity. This can involve reading and writing...

The Tech Platform
Dec 29, 2021


Recurrent Neural Networks by Example in Python
Recurrent means the output at the current time step becomes the input to the next time step. At each element of the sequence, the model...

The Tech Platform
Dec 29, 2021


What is Text Summarization using the TextRank Algorithm (with Python implementation)?
Text Summarization is one of those applications of Natural Language Processing (NLP) which is bound to have a huge impact on our lives....

The Tech Platform
Dec 17, 2021


Program to Swap two Variables in Python
The most native approach is to store the value of one variable(say x) in a temporary variable, then assigning the variable x with the...

The Tech Platform
Dec 16, 2021


Program to Reverse a List in Python
This python program allows user to enter the length of a List. Code: NumList = [] Number = int(input("Total Number of List Elements: "))...

The Tech Platform
Dec 14, 2021


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


Write a Python Program to Print the Fibonacci Series of a Given Number
A Fibonacci sequence is the integer sequence of 0, 1, 1, 2, 3, 5, 8.... The first two terms are 0 and 1. All other terms are obtained by...

The Tech Platform
Dec 10, 2021


Write a program to Find the Sum of the list in Python
See the flowchart below to understand how the code will work. Code: ListSum = [] #crate a empty list in Python #takes input for number...

The Tech Platform
Dec 10, 2021


PCA using Python
Original image (left) with Different Amounts of Variance Retained To understand the value of using PCA for data visualization, the first...

The Tech Platform
Nov 24, 2021


5 Different Ways to Load Data in Python
As a beginner, you might only know a single way to load data (normally in CSV) which is to read it using pandas.read_csv function. It is...

The Tech Platform
Nov 13, 2021
bottom of page
