Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 550 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 550 Bytes

Python Basics

Installation

sudo apt-get install python3
sudo apt-get install python3-pip
sudo pip3 install numpy
sudo pip3 install matplotlib

>> import numpy
>> print(numpy.__version__)

>> import matplotlib
>> print(matplotlib.__version__)

This is the latest version for the numpy and matplotlib.

Usage

  1. File introductory.ipynb has all the required syntax and numpy usage.
  2. File tasks.ipynb is concentrated on challanges for based on tutorials.
  3. Run tasks.ipynb on ipython kernel and complete the challanges.