Niharika Aitam has Published 172 Articles

Python program that renders a dictionary from two list with K values

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 11:34:06

173 Views

A Dictionary is an unordered collection of data structure which stores the elements as key and value. It is mutable and in other programming languages Dictionaries are also known as associative arrays, hash maps, or hash tables. The key is the unique one and the values are of a single ... Read More

Progress Bars in Python

Niharika Aitam

Niharika Aitam

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

3K+ Views

Progress bars in Python are visual indicators that provide feedback on the progress of a task or operation. They are useful for long-running processes or iterations where it's helpful to show how much work has been completed and how much is remaining. A progress bar typically consists of a visual ... Read More

Programming Paradigms in Python

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 11:32:03

3K+ Views

Programming paradigm is a specific approach or style of programming that provides a framework for designing and implementing computer programs. It encompasses a set of principles, concepts, and techniques that guide the development process and the structure of the code. Different paradigms have different ways of solving problems, organizing code, ... Read More

Program to calculate Dooms Day for a year

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 11:30:15

259 Views

The doomsday is also known as the doomsday of the week which is a specific day of the week that falls on the same date every year. The concept of the doomsday is based on the doomsday algorithm, which allows us to determine the day of the week for any ... Read More

Program to access different columns of a multidimensional Numpy array

Niharika Aitam

Niharika Aitam

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

150 Views

Numpy is the most powerful library in python for computing numerical data. It provides multidimensional arrays, along with different collections of functions and modules to work with arrays. Its efficient array operations, broadcasting capabilities, and integration with other libraries make it a go-to choice for data manipulation, analysis, and modeling ... Read More

How to convert JSON data into a Python object?

Niharika Aitam

Niharika Aitam

Updated on 15-May-2023 13:55:27

979 Views

JSON can be abbreviated as JavaScript Object Notation. Json means a script of a text file in a programming language to transfer and store the data. Json supported by the python programming language using a built-in package named json. The Json text is given in the quoted string ... Read More

How we can convert Python objects into JSON objects?

Niharika Aitam

Niharika Aitam

Updated on 15-May-2023 13:53:04

2K+ Views

JSON can be abbreviated as JavaScript Object Notation. Json means a script of a text file in a programming language to transfer and store the data. Json supported by the python programming language using a built-in package named json. The Json text is given in the quoted string ... Read More

How to attach a C method to existing Python class?

Niharika Aitam

Niharika Aitam

Updated on 15-May-2023 13:48:03

235 Views

We are currently coding of python C methods are being used. The base of all the libraries such as Numpy, Opencv, pytorch etc are built with the C and C++ i.e. these libraries internally call the Compiled C code where code will be executed in the machine and the result ... Read More

What's the best place for python classes in a Django project?

Niharika Aitam

Niharika Aitam

Updated on 15-May-2023 13:46:30

309 Views

Django is one of the frameworks used along with python to create the web pages in an efficient manner. It is also called as the framework included with batteries why because by default the Django framework gives the admin interface and database interface like SQLite 3 etc. It also provides ... Read More

How we can split Python class into multiple files?

Niharika Aitam

Niharika Aitam

Updated on 15-May-2023 13:44:38

2K+ Views

OOPs is abbreviated as object oriented programming language. It helps us to deal with the real time entities with inheritance, polymorphism, encapsulation etc. By using the oops concept we can make the code and functions work together in a better way. Group of objects is called a class. The class ... Read More

Advertisements