Use of comments in Python3

--Originally published at Elu's Blog

Comments are just notes that you can write on your code. When you have a code with 100 lines, comments are very helpful for knowing what each part of the code does. To write a comment you just write the ‘#’ symbol and then write your comment. As easy as that.

Here is an example:

Captura de pantalla 2017-04-20 a la(s) 17.47.22.png

Captura de pantalla 2017-04-20 a la(s) 18.00.15.png

Here is an alternative explanation:

How to Write Comments in Python