Niharika Aitam has Published 168 Articles

Python Program that Sends and Receives Message from Client

Niharika Aitam

Niharika Aitam

Updated on 02-Aug-2023 11:36:17

88 Views

Python socket is a set of modules used for socket programming, which enables communication between processes over IP networks. Sockets in Python provide the backbone for most network programming tasks. By importing relevant modules, we can write Python programs to create client and server programs for different types of network ... Read More

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

Niharika Aitam

Niharika Aitam

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

50 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

2K+ 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

1K+ 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

84 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

69 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

723 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

672 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 find out if a Python object is a string?

Niharika Aitam

Niharika Aitam

Updated on 15-May-2023 13:49:07

207 Views

We know that Python is an object oriented programming language. By using the oops concept we can make the code and functions work together in a better way. The OOPs in python help us to deal with the real time entities with inheritance, polymorphism, encapsulation etc. Group of ... Read More

How to attach a C method to existing Python class?

Niharika Aitam

Niharika Aitam

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

131 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

Advertisements