Open in app

Sign In

Write

Sign In

MOUMITA DEY
MOUMITA DEY

3 Followers

Home

About

Dec 11, 2022

Numpy in Python (Basic-2)

Array Attributes & Array Operations — Array Attributes Every Numpy Array is an object of the numpy class, so when we make a numpy array, it can access some attributes from the numpy class, so we should know about some of those attributes if we want to work with data. so first we need 3 arrays to work…

Numpy

3 min read

Numpy in Python (Basic-2)
Numpy in Python (Basic-2)
Numpy

3 min read


Dec 10, 2022

Numpy in Python (Basic)

Creating Numpy Array — NumPy is the fundamental package for scientific computing in Python. the main thing in numpy is called the numpy array. …

Python

4 min read

Numpy in Python (Basic)
Numpy in Python (Basic)
Python

4 min read


Nov 20, 2022

What is garbage collection in python???

a = 'Ndub' b = a print(a) print(id(a)) print(id(b)) del a print(id('Ndub'))

Python

2 min read

What is garbage collection in python???
What is garbage collection in python???
Python

2 min read

What is garbage collection in python???

Source

a = 'Ndub'
b = a
print(a)
print(id(a))
print(id(b))

del a

print(id('Ndub'))

--

--


Nov 20, 2022

What is mutability in python datatypes and why is it dangerous in different scenarios??

we know in python, data types can be of 2 types in terms of mutability.

Python

3 min read

What is mutability in python datatypes and why is it dangerous in different scenarios??
What is mutability in python datatypes and why is it dangerous in different scenarios??
Python

3 min read


Nov 16, 2022

All About Tuples in Python

Tuple A tuple in python is similar to a list, very similar to brothers but the difference is that we cannot change the elements of a tuple once it is assigned whereas we can change/edit the elements of a list. in short, a tuple is an immutable list. A tuple cannot…

Tuples

6 min read

All About Tuples in Python
All About Tuples in Python
Tuples

6 min read


Nov 16, 2022

Difference between List and Tuples in Python

Syntax — is different. A list is written in square brackets [ ] while Tuples are written in round brackets ( ). Mutability — the list is mutable but the tuple is not. Speed — The speed of a tuple is definitely faster than a list because immutable datatypes are…

Difference Between

2 min read

Difference between List and Tuples in Python
Difference between List and Tuples in Python
Difference Between

2 min read


Aug 19, 2022

Introduction to Data Types in python

Python supports 3 categories of data types: Basic Types: (integer,float,complex,boolean and string) Container Types: (List,Tuples,Sets,Dictionary) User-Defined Types: Class Basic types cover that we all have seen in other programming languages. Container type can hold multiple basic data types into a single container, python provides us with 4 options. The first…

Python

3 min read

Introduction to Data Types in python
Introduction to Data Types in python
Python

3 min read

MOUMITA DEY

MOUMITA DEY

3 Followers

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech