Learning Python

Some resources about python

In most of the courses, the Python programming language is used. While the introductory course will guide you through the process of learning, the other courses will assume some basic knowledge of Python.

If you never programmed in Python and you want to check out how easy or hard it may be, we can suggest some courses and projects to help you get a better picture.

What is needed in Python?

A general knowledge about how python works, variable, lists, array and similar, plus some libraries which are widely used:

  • numpy: widely used open-source library to work with array, matrices, vectors and most of the mathematical operations. Mostly needed in the Deep Learning course to implement the basic neural network operations.

  • Tensorflow: open-source higher level framework which allows to create and work neural network in a very easy and intuitive way. Needed in most courses.

  • data pre-processing: a usually underestimated task in the machine learning field is data pre-processing, as for example reading different file types for working with time series or natural language processing (.csv, .txt, .json), or loading and working with images (numpy, Pillow, openCV).

Tutorials

1) Kaggle offers some tutorials to learn the foundamentals of python. Here you can find the list of lectures.

2) on Coursera you can find small Guided Projects. The explanation is limited, therefore they are suggested for people who already have some experience, to freshen up old skills. As an example, here one on Logistic Regression with Python and Numpy and here a list of Guided Projects related to Python and numpy.

3) One of the best books for learning Python is freely available under:

http://www.greenteapress.com/thinkpython/thinkpython.pdf

Last updated