What Is Programming?
Television shows and films often show programmers furiously typing cryptic
streams of 1s and 0s on glowing screens, but modern programming isn’t
that mysterious. Programming is simply the act of instructions for
the computer to perform. These instructions might crunch some numbers,
modify text, look up information in files.
All programs use basic instructions as building blocks like,
“Do this then do that.”
“If this condition is true, perform this action; otherwise, do that action.”
“Do this action that number of times.”
“Keep doing that until this condition is true.”
What Is Python?
Python refers to the Python programming language and the
Python interpreter software that reads source code and
per-forms its instructions.
The Python interpreter is free to download from http://python.org/.
and there are versions for Linux, OS X, and Windows.