The notebooks for this course are available at: https://github.com/MonashBioinformaticsPlatform/intro-to-python-for-bioinformatics/tree/bioinfosummer2017
The official Python docs are quite good: https://docs.python.org/3/tutorial/
The Data Carpentry and Software Carpentry courses: http://www.datacarpentry.org/python-ecology-lesson/ and https://swcarpentry.github.io/python-novice-inflammation/
An in-depth from beginner to more advanced concepts: http://www.python-course.eu/python3_course.php
So many 'Data Science' MOOCs. So, so many.
Check out numpy
(fast arrays rather than simple Python lists) and Pandas
(DataFrames for stats, similar to R
).
http://jupyter.org/install.html
python3 -m venv ~/jupyter_venv
source ~/jupyter_venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install jupyter
jupyter notebook
import this