es-kang / Python-Lectures

IPython Notebooks to learn Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Python-Lectures

This is a set of lectures built and extended from sources from Rajeth Kumar and Valentin Haenel

Introduction

Python is a modern, robust, high level programming language. It is very easy to pick up even if you are completely new to programming.

Installation

Mac OS X and Linux come pre-installed with python. Windows users can download python from https://www.python.org/downloads/ .

To install IPython run,

$ pip install ipython[all]

This will install all the necessary dependencies for the notebook, qtconsole, tests etc.

Installation using packaged environments

Anaconda comes pre-packaged with all the necessary python libraries and also IPython.

Anaconda

Download Anaconda from https://www.continuum.io/downloads

Anaconda is completely free and includes more than 300 python packages. Both python 2.7 and 3.6 options are available.

Launching Jupyter Notebook

In the terminal, go to the directory of the ipython notebooks and type

jupyter notebook

In Anaconda, open the respective terminals and execute the above.

Table of contents

00 - Introduction and Installation

01 - Variable, Operators and Built-in Functions

02 - Print Statement, Precision and FieldWidth

03 - Lists, Tuples and Sets

04 - Strings and Dictionaries

05 - Control Flow Statements

06 - Functions

07 - Classes

08 - NumPy introduction part 1

09 - NumPy introduction part 2

10 - Matplotlib introduction

These are online read-only versions.

License

This work is licensed under the Creative Commons Attribution 3.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by/3.0/

About

IPython Notebooks to learn Python


Languages

Language:Jupyter Notebook 99.7%Language:Python 0.3%