Posts from Python

Creating Django Application and Introduction to Django Models(Part IV)

By Aayush Gupta

In this tutorial, we are going to learn how to make Django Application and have a look at what Django Models are. This tutorial is a part of our series on Creating Blog Website usi.... Read More

Load and show image using Matplotlib Python library

By Faruque Ahamed Mollick

Matplotlib is a 2D plotting Python library that can produce figures, graphs, and charts. In this tutorial, I am going to show you how to show a simple RGB image using the Matplotli.... Read More

How to use NumPy arange() method to create arrays in Python?

By Faruque Ahamed Mollick

NumPy is a very powerful Python library that used for creating and working with multidimensional arrays with fast performance. The arange() method provided by the NumPy library use.... Read More

Explicit Type Casting in Python Language

By Pavitra Walia

We all are familiar with the data types. Have you ever think of changing one data type to another data type. So, In this tutorial, we learn about how we can make this conversion ha.... Read More

Capture and save webcam video in Python using OpenCV

By Faruque Ahamed Mollick

Python is a great programming language to work with the webcam. OpenCV is a popular library available for Python that can make it easier to work with videos and webcam. Using this .... Read More

How to create rock paper scissors two players game in Python

By Shivam Singh

In this Python tutorial, we will learn how to create rock paper scissors two player scissor game in Python. So, at first we will define the moves about the rock, paper and scissors.... Read More

How to shuffle a list in Python

By Saruque Ahamed Mollick

In this Python tutorial, we will learn how to shuffle a list in Python. We will take a list with some elements in it. Our goal is to shuffle the elements in the list using Python. .... Read More

How to find whether a given year is a leap year or not using Python?

By Priyam Sur

In this Python tutorial, we will learn how to find if a year is a leap year or not in Python. Find whether a given year is a leap year or not using Python Leap Year (LY) is a year .... Read More

Related Posts