Programming Tutorials

Latest

 thumbnail

Django Form Validation Without Model

July 09, 2021

To use form validation in Django without using a model, pass forms.Form as the first argument of the form class rather t...

 thumbnail

Unzip Files in Python

June 30, 2021
 thumbnail

Python Numpy.sqrt() - Square Root

June 30, 2021

In this tutorial, we will learn how to get the square root of an array using the numpy.sqrt() function in Python. n...

 thumbnail

Truncate Float in Python

June 29, 2021

Truncating floats makes calculations easier in terms of processing. There are two ways to truncate a number in Python –...

 thumbnail

How to use Switch Case Statements in Java

June 28, 2021

A switch-case statement in Java allows you to run different blocks of code depending on the value of a variable. sw...

 thumbnail

How to use Not Equal in Python

June 28, 2021

A not equal expression in Python will return True if the two values supplied are not the same and False if they are. In...