Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vnitinv/pythontraining
Python Training
https://github.com/vnitinv/pythontraining
Last synced: 7 days ago
JSON representation
Python Training
- Host: GitHub
- URL: https://github.com/vnitinv/pythontraining
- Owner: vnitinv
- Created: 2019-06-22T16:30:37.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-07T05:09:18.000Z (over 4 years ago)
- Last Synced: 2024-10-28T17:09:59.978Z (about 2 months ago)
- Language: Jupyter Notebook
- Size: 968 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PythonTraining
## IntroductionPython 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.## 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?
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.