.feed-links {display:none !important;} -->

Install Python

 Install python on Linux or MacOSIf you work in a Linux or MacOS environment : good news Python already installed!Install python on Windows...

Python interpreter

 To use Python on Ubuntu for example, run a terminal:Then run the "python" command:You notice the 3 chevrons >>> , this means that the pyth...

Python IDE Editors

 The PyCharm IDEPyCharm is quite simply the best IDE. Its free version is very complete and meets all the needs of a python developer.Visua...

Modules and packages in python

 So far we have managed to create small pieces of code without much interest because very unambitious. The problem with the interpreter is ...

PEP 8 learn best practices for coding in python

 What is PEP 8?PEP 8 (for Python Extension Proposal) is a set of rules that allows code to be homogenized and best practices to be applied....

Black, the uncompromising python code trainer

 Black, what is it?Black is a python code trainer . Formatting your code is essential, as we saw in the previous chapter, writing your code...