Posts from Python

Uploading files using Dropbox-API in Python

By Snigdha Ranjith

This post is all about how to upload files to Dropbox using Dropbox-API in Python. Dropbox is a cloud storage service. It is free and a basic Dropbox account has 2GB of storage spa.... Read More

How to call an external command from Python

By Vimal Pandey

In this tutorial post, we are going to learn how to call an external command from Python. External commands are those command which we run on our command prompt in windows. Example.... Read More

__name__ in Python

By Vimal Pandey

As we know that Python does not have a main() function like C and C++. When the interpreter runs the program, code at level 0 indentation(very first line) starts executing. Before .... Read More

What does if __name__ == “__main__”: do in Python

By Vimal Pandey

Hello guys. In this tutorial we will learn that what does if __name__ == “__main__”: do in Python. if __name__ == “__main__”  in Python prevents the speci.... Read More

Height-Weight Prediction By Using Linear Regression in Python

By Suvam Ghosh

Hi everyone, in this tutorial we are going to discuss “Height-Weight Prediction By Using Linear Regression in Python“. What is a Linear Regression? In statistics, linea.... Read More

How to build 2048 game in Python

By Bhavya Chhabra

In this tutorial, we will build the 2048 game in Python. We will go through the different moves during the build of the game. *I will use 4×4 matrix to explain this game in th.... Read More

How to Make Predictions with scikit-learn in Python

By Tuhin Mitra

In this post, I’ll discuss, “How to make predictions using scikit-learn” in Python. How to Install “scikit-learn” : I’ll be using Python version.... Read More

File operations for tell() and seek() functions in Python

By Praneeth madduri

A Python program to demonstrate file operations for tell(), seek() functions and copying content from one file to another. In this tutorial, we’ll be learning the file operat.... Read More

Related Posts