Skip to content

Latest commit

 

History

History
 
 

Python

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Recommended Python Learning resources

These resources are gathered from fastai community curated by Jeremy Howard & various contributors.

Quick Links

Beginners

Intermediate

  • The Hitchhiker’s Guide to Python : A book on Python from Kenneth Reitz, the author of requests library. A comprehensive introduction into Python’s eco-system and best practices.
  • Peter Norvig’s Pytudes : A github repo that contains well-made jupyter notebooks, ranging in topics from Gesture Typing to A Concrete Introduction to Probability (using Python). These notebooks make for some great reads and the coding style is a good resource to learn from, especially in ways of breaking down problems in clear, readable code.
  • Design of Computer Programs : Also by Peter Norvig on Udacity is a great programming course in general, and has good introductions to comprehensions and generators.
  • Fluent Python : Introduces the internals of python, helps you write more pythonic code.

Advanced