LIST OF PYTHON PROGRAMMING TERMS
1. algorithm
A set of specific steps for solving a category of problems
2. token
basic elements of a language (letters, numbers, symbols)
3. pixel
Smallest addressable element of a picture.
4. proprioception
on a robot, internal sensing mechanisms. On a human, a sense of
the relative positions of different parts of ones own body.
5. recursion
The process of calling the currently executing function.
6. robot
mechanism or an artificial entity that can be guided by automatic
7. high-level language
A programming language like Python that is designed to be easy
for humans to read and write.
8. low-level langauge
A programming language that is designed to be easy for a
computer to execute; also called machine language or assembly
language
9. keyword
define the language's syntax rules and structure, and they cannot be
used as variable names
10. statement
instruction that the Python interpreter can execute
11. operators
special tokens that represent computations like addition,
multiplication and division
12. flow of execution
The order in which statements are executed during a program run.