Niharika Aitam has Published 168 Articles

Python program to compute arithmetic operation from String

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 11:46:33

185 Views

Arithmetic operations are the mathematical calculations on numeric data types. The following are the arithmetic operations allowed in python. Addition (+) Subtraction (-) Multiplication (*) Division (/) Floor Division (//) Modulo (%) Exponentiation (**) There are several ways to compute arithmetic operation from string. Let’s see them one ... Read More

How to change the default matplotlib plot to seaborn plot?

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 11:45:44

589 Views

Changing the default matplotlib plot settings to Seaborn involves modifying the default plot parameters to match the style and aesthetics provided by Seaborn. This can be achieved by adjusting various elements such as the color palette, gridlines, font styles, and plot themes. Here's a step-by-step guide to changing the default ... Read More

Python program to check whether the values of a dictionary are in same order as in a list

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 11:44:29

48 Views

Dictionary is the mutable data structure in python, which allows the user to store the data in the format of key and value. The key and value are separated by using the symbol ":". The keys are unique and the values can be repeated. The values can be given as ... Read More

Python Program to check whether Characters of all string elements are in lexical order or not

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 11:43:59

62 Views

Lexical order refers to the order of characters or strings based on their dictionary or alphabetical order. In lexical order, characters are arranged in the same way they would be in a dictionary. The comparison is done based on the numerical values of the characters in their respective character sets ... Read More

What are the different Figure styles in seaborn?

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 11:42:18

626 Views

Seaborn is one of the powerful data visualization libraries in Python which provides various styles to customize the appearance of plots. The built-in figure styles in Seaborn helps us to customize the appearance of the plots and enhances the aesthetics of the visualization. Let's explore the different figure styles available ... Read More

What are the different plots available in the Seaborn?

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 11:40:13

82 Views

Seaborn is a powerful data visualization library in Python that builds on top of Matplotlib. It provides a high-level interface for creating attractive and informative statistical graphics. It offers a variety of plot types to explore and visualize data effectively. The below are the different plots available in Seaborn which ... Read More

Introduction to pyglet library for game development in Python

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 11:39:42

157 Views

Pyglet is a powerful library for game development and multimedia applications in Python. It provides an easy-to-use interface for creating games, handling graphics, playing audio, and handling user input. It is built on top of the OpenGL library, which allows for high-performance graphics rendering. The following steps to be followed ... Read More

Python program to build flashcard using class in python

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 11:38:55

294 Views

Generally, a flashcard is a learning tool that consists of a small card or piece of paper with information printed on one side. These are commonly used to aid in memorization and learning of facts, vocabulary, definitions, equations, or any other type of information that can be presented in a ... Read More

Python program to apply itertools.product to elements of a list of lists

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 11:38:18

147 Views

The itertools is a module in the Python standard library that provides a collection of tools for efficient iteration and combination of iterables and as it is part of python standard library no need to perform any additional installations. It offers various functions that can be used to manipulate, combine, ... Read More

Python program to add two octal numbers

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 11:37:28

137 Views

An octal number is a number expressed in the base-8 numeral system. It uses digits from 0 to 7. Octal numbers are commonly used in computer science and digital systems, especially when dealing with groups of three bits. In octal notation, each digit represents an increasing power of 8. The ... Read More

Advertisements