Posts from Python

Activation Function For Neural Network

By Arijit Roychaudhury

What is a Neural Network? As we all know Human Neurons are one of the most sensible parts of the human body, it gives humans the ability to visualize, differentiate and determine s.... Read More

Text-To-Speech conversion in Python

By Kunal Gupta

In this tutorial, we’ll be learning about Text-To-Speech(TTS) conversion using a Python library named pyttsx3. We’ll write a message which our System will speak. This l.... Read More

Break and Continue Statement in Python

By Jitendra Kumar

In this tutorial, we will learn about the Break and Continue statement in Python. These are used in the Python language during looping that is while and for loop. Basically these t.... Read More

Print An Identity Matrix In Python

By Svarnim Agarwal

In this tutorial, we will learn how to print an identity matrix in python. The size of the matrix is user inputted. We will be using the following concepts to print the identity ma.... Read More

Finding Commonalities in Two Dictionaries In Python

By Jitendra Kumar

In this tutorial, we have two dictionaries and want to find out what they might have in common (like the same keys, same values, etc.). Basically there are some similarities betwee.... Read More

String split and join in Python

By Shakshi Parekh

Here we explain String split and join in Python. Python provides us with various inbuilt functions, two of which are split and join. String Split in Python Split is a function in w.... Read More

How to convert .py to .exe

By Kunal Gupta

In this tutorial, we’ll be learning how we can create an executable file for our Python program that can run on any same platform system. We will make use of Python library P.... Read More

Reverse the order of lines of a .txt file in Python

By Ria Sehgal

Learn how to reverse the order of lines of a .txt file in Python. That means, the last line of the text file will appear first and the first line will appear last. This tutorial is.... Read More

Related Posts