Posts from Python

How to generate random sentences in Python

By Harish Mullagura

In this tutorial, we will discuss how to generate random sentences in Python. There are many ways to generate random sentences using random and secret modules. In this tutorial, we.... Read More

Bitcoin price prediction using machine learning in Python

By Kanduri Jayanth Sri Ram

Bitcoin is in its boom nowadays. So, it’s important to study cryto. In this tutorial, you will learn about the prediction of the price of bitcoin after 30 days using machine .... Read More

What is ‘b’ in front of string and how to remove that in Python?

By Varsha Neelamma

If you are familiar with Python, you may be well aware of the different Python data types including strings and bytes. While programming, you may have come across strings with R.... Read More

ImageFile module in Pillow

By Varsha Neelamma

Pillow is a successor project of Python’s original image processing module, the Python Imaging Library (PIL), which is in discontinuation since 2011. It provides various func.... Read More

Download all images of a webpage using Python

By Varsha Neelamma

Whenever you visit any webpage, you may come across different types of content, ranging from text to images, audio to videos. Sometimes, you just want to read the content, catch a .... Read More

Convert date to timestamp in Python

By Manam Sampath Kumar Reddy

In many Databases date and time are stored in timestamp format. Converting date and time from strings format into timestamp format we can do this using Python. We mostly encounter .... Read More

Bidirectional Hash table or Two way dictionary in Python

By Sai Mukesh Reddy Gutha

Hey Geek! In this tutorial, we will implement a two-way dictionary or a bidirectional hashmap in Python. Before getting started you need to be familiar with the dictionary data str.... Read More

From dividing line to Support Vector Machines in Python

By Premkumar Vemula

A simple dividing line is used to make predictions on simple 2D data where we have a dependent variable and an independent variable. A line can be drawn according to the relation b.... Read More

Related Posts