Posts from Python

How to convert radian to degree in Python

By Nitesh Jhawar

We all have dealt with radians and degrees in our school and college days. Yes, in Mathematics and Physics. Radians and Degree are used to represent angles. For eg, 1.4 radians or .... Read More

Search a number in an array using Python

By Rachna Patel

Hey Pythoneers, In this tutorial, we will see how to search for a number in an array. In Python, an array can contain different types of values such as string, number etc. But here.... Read More

basics of TensorFlow with examples

By Mrityunjay Tripathi

TensorFlow is a Machine Learning library released in 2015 by Google Brain Team to provide ease in implementing Machine Learning Algorithms. I will not delve much inside it’s .... Read More

Rename multiple files in python

By Prakash Raj

In this session, we are going to learn how to change the name of multiple files of a given directory. How to rename multiple files of a given directory in python There is an OS mod.... Read More

Find out the future date with Python

By Rachna Patel

This tutorial will focus on how to add days to date in Python or you can say how to find a future date in Python. Hey Pythoneers, Do you sometimes get lost and wonder finding out t.... Read More

Prepare your own data set for image classification in Machine learning Python

By Mrityunjay Tripathi

There is large amount of open source data sets available on the Internet for Machine Learning, but while managing your own project you may require your own data set. Today, letR.... Read More

How to convert comma-separated string to list in Python

By Nitesh Jhawar

In this tutorial, we will learn how to convert a comma separated string to a list in Python. For that, we will use a built-in function split(). So let’s dive right into it. .... Read More

How to get Extension of a file in Python

By Nitesh Jhawar

File extension indicates the format of a file. For example, .py indicates a Python file, .txt indicates a Text file, .pdf indicates a PDF file and many more. In this tutorial, we w.... Read More

Related Posts