All Projects → rajathkmp → Python Lectures

rajathkmp / Python Lectures

IPython Notebooks to learn Python

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Python Lectures

Numpile
A tiny 1000 line LLVM-based numeric specializer for scientific Python code.
Stars: ✭ 341 (-3.94%)
Mutual labels:  jupyter-notebook, tutorial, ipython-notebook
Scikit Learn Videos
Jupyter notebooks from the scikit-learn video series
Stars: ✭ 3,254 (+816.62%)
Mutual labels:  jupyter-notebook, tutorial
100 Days Of Ml Code
100-Days-Of-ML-Code中文版
Stars: ✭ 16,797 (+4631.55%)
Mutual labels:  jupyter-notebook, tutorial
Julia Dataframes Tutorial
A tutorial on Julia DataFrames package
Stars: ✭ 318 (-10.42%)
Mutual labels:  jupyter-notebook, tutorial
Generative models tutorial with demo
Generative Models Tutorial with Demo: Bayesian Classifier Sampling, Variational Auto Encoder (VAE), Generative Adversial Networks (GANs), Popular GANs Architectures, Auto-Regressive Models, Important Generative Model Papers, Courses, etc..
Stars: ✭ 276 (-22.25%)
Mutual labels:  jupyter-notebook, tutorial
Cryptocurrency Analysis Python
Open-Source Tutorial For Analyzing and Visualizing Cryptocurrency Data
Stars: ✭ 278 (-21.69%)
Mutual labels:  jupyter-notebook, tutorial
Sars tutorial
Repository for the tutorial on Sequence-Aware Recommender Systems held at TheWebConf 2019 and ACM RecSys 2018
Stars: ✭ 320 (-9.86%)
Mutual labels:  jupyter-notebook, tutorial
Deep Learning Keras Tensorflow
Introduction to Deep Neural Networks with Keras and Tensorflow
Stars: ✭ 2,868 (+707.89%)
Mutual labels:  jupyter-notebook, tutorial
Pytorch
Deep Learning Zero to All - Pytorch
Stars: ✭ 328 (-7.61%)
Mutual labels:  jupyter-notebook, tutorial
Vscodejupyter
Jupyter for Visual Studio Code
Stars: ✭ 337 (-5.07%)
Mutual labels:  jupyter-notebook, ipython-notebook
Generative Adversarial Networks
Tutorial on GANs
Stars: ✭ 275 (-22.54%)
Mutual labels:  jupyter-notebook, tutorial
Thesemicolon
This repository contains Ipython notebooks and datasets for the data analytics youtube tutorials on The Semicolon.
Stars: ✭ 345 (-2.82%)
Mutual labels:  jupyter-notebook, tutorial
Pytorch Image Classification
Tutorials on how to implement a few key architectures for image classification using PyTorch and TorchVision.
Stars: ✭ 272 (-23.38%)
Mutual labels:  jupyter-notebook, tutorial
Pytorch Lesson Zh
pytorch 包教不包会
Stars: ✭ 279 (-21.41%)
Mutual labels:  jupyter-notebook, tutorial
Notebooks Statistics And Machinelearning
Jupyter Notebooks from the old UnsupervisedLearning.com (RIP) machine learning and statistics blog
Stars: ✭ 270 (-23.94%)
Mutual labels:  jupyter-notebook, ipython-notebook
Geopandas Tutorial
Tutorial on geospatial data manipulation with Python
Stars: ✭ 306 (-13.8%)
Mutual labels:  jupyter-notebook, tutorial
Pytorch Seq2seq
Tutorials on implementing a few sequence-to-sequence (seq2seq) models with PyTorch and TorchText.
Stars: ✭ 3,418 (+862.82%)
Mutual labels:  jupyter-notebook, tutorial
Understanding Nn
Tensorflow tutorial for various Deep Neural Network visualization techniques
Stars: ✭ 261 (-26.48%)
Mutual labels:  jupyter-notebook, tutorial
Scipy Cookbook
Scipy Cookbook
Stars: ✭ 326 (-8.17%)
Mutual labels:  jupyter-notebook, ipython-notebook
Mini Python Project
用Python做些有趣的项目
Stars: ✭ 345 (-2.82%)
Mutual labels:  jupyter-notebook, tutorial

Python-Lectures

Note: Andreas Ernst has improvised and updated the repo to python 3, Link

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 comes 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 from unofficial distributions

Installing all the necessary libraries might prove troublesome. Anaconda and Canopy 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.4 options are available.

Canopy

Download Canopy from https://store.enthought.com/downloads/#default

Canopy has a premium version which offers 300+ python packages. But the free version works just fine. Canopy as of now supports only 2.7 but it comes with its own text editor and IPython environment.

Launching IPython Notebook

From the terminal

ipython notebook

In Canopy and Anaconda, Open the respective terminals and execute the above.

How to learn from this resource?

You can download the pdf copy from here : Get Started with Python

It is better to download all the ipython notebooks from this repository https://github.com/rajathkumarmp/Python-Lectures and learn it on the notebook itself rather than having to refer to a pdf.

Launch ipython notebook from the folder which contains the notebooks. Open each one of them

Cell > All Output > Clear

This will clear all the outputs and now you can understand each statement and learn interactively.

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

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/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].