Posts by Aditi Deo
Author Biographical Info: Not available
Django is a framework based on Python that uses the model-view-template architecture to build web apps. In this tutorial, we will learn how to add static files such as images, java.... Read More
There are several real-time situations wherein you might want to select random elements from a list of items. For instance, suppose when we want to randomly make a group of 4 stude.... Read More
A warning in Python is used to display a message which is not considered an error or exception. For instance, if we use any deprecated features in Python that are basically not all.... Read More
Dictionaries in Python store the data in form of key-value pairs where the keys should be unique and immutable. Whereas Sets in Python are used to store a list of unique values ins.... Read More
Consider a tuple consisting of binary elements such as (1,1,0,1,0). A binary number consists of 1s and 0s to represent an integer. A tuple in Python stores multiple elements inside.... Read More
Often in many scenarios Initials of names are used in signatures in various documents and web forms. The initials are a shorter representation of the name of an individual. They ar.... Read More
Geometric transformations of images are used to transform the image by changing its size, position or orientation. It has many applications in the fields of Machine Learning and Im.... Read More
In this tutorial, we will understand how to implement a nested List in Python. Before that let us understand list in Python. List in Python is a data type that can store multiple i.... Read More