Posts by Aditi Deo

Author Biographical Info: Not available

Add CSS and Static Files in Django

By Aditi Deo

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

Pick two or more random elements from an array in Python

By Aditi Deo

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

How to disable Python warnings

By Aditi Deo

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

Convert a Set to Dictionary in Python

By Aditi Deo

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

Convert Binary tuple to Integer in Python

By Aditi Deo

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

Find Initials of a Name in Python

By Aditi Deo

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 Image in Python

By Aditi Deo

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

Nested List in Python

By Aditi Deo

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

Related Posts