top of page
Search


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 Print Factorial of a Number in Python
Factorial is a non-negative integer. It is the product of all positive integers less than or equal to that number you ask for factorial....

The Tech Platform
Dec 16, 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


Raspberry Pi Poker Player
The poker player performs 3 main steps: (1) identify cards, (2) identify hands, and (3) make bets. I will show how you can use MATLAB to...

The Tech Platform
Dec 15, 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


How to Print All Permutations of a Given String in C, C++, JavaScript, and Python.
A permutation is a specific order in which objects can be arranged. For a string of length n, there are n! (n factorial) possible...

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 Multiply the List in Python
This program allows user to define the size of list, then further ask to enter all the numbers of given size. For example, if user enters...

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
bottom of page
