Python Vocabulary
Python Vocabulary
Vocabulary
Problem solving
•
Characters displayed by the interpreter to
indicate that it is ready to take input from the
user.
Script
•
A program stored in a file (usually one that will
be interpreted).
Interactive mode
•
A way of using the Python interpreter to read
and execute statements in a script.
Program
•
A set of instructions that specifies a
computation.
Algorithm
•
The structure of a program.
Syntax error
•
An error in a program that makes it impossible
to parse (and therefore impossible to
interpret).
Exception
•
An error that is detected while the program is
running.
Semantics
• The meaning of a program.
Semantic error
•
An error in a program that makes it do
something other than what the programmer
intended.
Natural language
•
Any one of the languages that people have designed
for specific purposes, such as representing
mathematical ideas or computer programs.
Token
•
One of the basic elements of the syntactic
structure of a program, analogous to a word in
a natural language.
Parse
•
To examine a program and analyze the
syntactic structure.
Print statement