Matplotlib –

Matplotlib is probably the single most used python package for 2D Graphs. It provides vary quick way to visualize data from python and publication-quality figures in many formats. import matplotlib.pyplot…

Continue ReadingMatplotlib –

Pandas

Pandas is a library in python that is used for data manipulation and data analysis. You can install pandas in your jupyter terminal by writing:- conda install pandasOnce you install…

Continue ReadingPandas

Numpy In Python

from numpy import exp, array, random, dot training_set_inputs = array([[0, 0, 1], [1, 1, 1], [1, 0, 1], [0, 1, 1]]) training_set_outputs = array([[0, 1, 1, 0]]).T random.seed(1) synaptic_weights =…

Continue ReadingNumpy In Python

Python Objects

In python everything is an object. Numbers, Strings, Booleans and even code is considered as objects. Objects are like containers of data. Numbers,Strings and Booleans -  Single Value Tuples, Lists,…

Continue ReadingPython Objects

What is Python?

  Python is a dynamic, high level and interpreted programming language.It is simple and easy to learn and provides lots of high-level data structures. Python makes the development and debugging…

Continue ReadingWhat is Python?