How to save an image in OpenCV using C++

By Raghav Khandelwal

In this tutorial, we will learn how to save an image in OpenCV using C++. To begin with, first, we should understand what is OpenCV. It is an open-source library used for image pro.... Read More

How to set upload file size limit in Django

By Khushi Aswani

This tutorial is based on limiting the uploading file size or restricting a limit to which we can store a large amount of data with less storage data. You might want to have a limi.... Read More

Return vs yield in Python with example

By Anudeep Pulluri

Hey coder! at last here comes the article where we are going to learn the differences between return and yield keywords in Python, with examples. return keyword in Python In Python.... Read More

Django – Submit Form data with Post Method

By Shamik Lahiri

In this tutorial, we will be learning how to submit form data using POST in Django. Submitting forms is an important aspect of any website, be it customer reviews, contact pages or.... Read More

Example of Multithreading in Python

By GAURAV KUMAR SINGH

Before starting to study multithreading, we will study threading. Threading is the happening of two or more things simultaneously. We can schedule a thread in Python to execute at .... Read More

Create a Timer using PyQt5 and Playing alarm sound in Python

By Tuhin Mitra

In this post, I will be teaching you an application in Python that can be used as a “TIMER” for setting alarms for under 1 hour or so. And by doing this small project, .... Read More

How to Lookup Dictionary Value with Key in Django Template

By Khushi Aswani

This tutorial is all about looking into a dictionary value using a key in Django Template. This task will be accomplished by creating a dictionary in the views.py file and then ren.... Read More

How to slice a string in Python – Multiple ways

By Shubhodh Amaravadi

In this tutorial, we are going to learn how to slice a string in multiple ways in Python. String slicing is the process of obtaining the substring of a given string with specified .... Read More

Related Posts