Python
What are Pickling and Unpickling?
Pickling Pickling and unpickling are terms commonly used in the context of Python programming and refer to the process of...
Read More βWhat Advantage does the NumPy Array have over a nested list?
NumPy arrays offer several advantages over nested lists in Python. Let’s see some of the key advantages: Overall, the advantages...
Read More βDjango Architecture in Python
Django is a web service used to build your web pages. Its architecture is as shown: Popular Posts
Read More βHow is Multithreading Achieved in Python?
Multithreading usually implies that multiple threads are executed concurrently. The Python Global Interpreter Lock doesnβt allow more than one thread...
Read More βWhat is the difference Between a Shallow Copy and Deep Copy?
Deepcopy Deepcopy creates a different object and populates it with the child objects of the original object. Therefore, changes in...
Read More βWhat are Literals in Python and explain about different Literals?
A literal in python source code represents a fixed value for primitive data types. There are 5 types of literals...
Read More βWhat are the common built-in data types in Python?
The common built-in data types in Python are: String A sequence of characters in called a string. They are declared...
Read More βWhat are the common built-in data types in Python?
The common built-in data types in python are: Numbers They include integers, floating-point numbers, and complex numbers. e.g., 1, 2.4,...
Read More βWhat are Dict and List Comprehensions in Python?
Dictionary and list comprehensions are just concise way to define dictionaries and lists. Example of list comprehension is: Var =...
Read More βWhat are Python namespaces?
A namespace In Python refers to the name which is assigned to each object in Python. The objects are variables...
Read More βNumPy for Data Science – Part 5
The difference between copy and view Copy View Join & split function Join array β joining means putting contents of...
Read More βNumPy for Data Science – Part 4
Broadcasting NumPy Arrays The term broadcasting describes how NumPy treats arrays with different shapes during arithmetic operations. Subject to certain...
Read More β