Django Introduction with Hello World project.

What is Django: Django is python framework for development of web applications. This is a opensource framework used for web development. Python has other web development frameworks like Flask, but Django is fully featured web framework compared to light weight Flask. We are using Ubuntu-20.4 machine as a development host. Django can be installed on […]

Python Numpy and N-dimensional array operations-2

Part-1 of numpy series blog introduces python numpy library and creation of multidimensional array using Numpy. This blog post focuses on accessing array elements using operations like slicing and indexing. Array elements can be accessed using indexing, square brackets ([]) are used for indexing.  This indexing using square brackets is similar to Python lists, index zero […]

Python Numpy and N-dimensional array operations-1

Numpy is a very essential Python package used in Numerical and Scientific computing. Numpy library comes with rich mathematical computations like linear algebra, mathematical transforms as Fourier transforms etc. Numpy is the foundation for many opensource Python packages for Maths, scientific computing, and data analysis (scikit, pandas, etc…). These packages are built on top of […]

Basics of Python Lists.

Lists are one of the important python data structure widely used for solving numerical, statistical problems. Lists are more like arrays in other programming languages, But lists are a heterogeneous data structure, List is defined with items separated by the comma  (“,” ) and enclosed by square brackets (‘[]‘) This below example using Jupyter notebook shows […]