Python Tutorial : How assign values to a variable?
You will be able to assign any numeric value to a variable just
following some simple steps. I will show you now an easy example that
demonstrate how easy is do it.
>>> Speed = 120
>>> Wind = .25
>>> Speed * Wind
30.0
When you are writing a program in Python you can use comments in order
you can indicate a reference about the meaning of a specific line of
code. A good programmer always has in mind to write well-documented
programs. A way you can do that in Python is using “#” as a preceding
symbol after the comment you can write. Let’s see another example that
includes comments, strings, numbers and other elements.

