PDA Glossary
Glossary
Glossary
Fichier Détails
Cartes-fiches | 194 |
---|---|
Langue | English |
Catégorie | Informatique |
Niveau | Autres |
Crée / Actualisé | 29.01.2018 / 30.01.2018 |
Lien de web |
https://card2brain.ch/box/20180129_pda_glossary
|
Intégrer |
<iframe src="https://card2brain.ch/box/20180129_pda_glossary/embed" width="780" height="150" scrolling="no" frameborder="0"></iframe>
|
A program stored in a file.
A way of using the Python interpreter to read code from a script and run it.
A way of using the Python interpreter by typing code at the prompt.
To run a statement and do what it says.
A section of code that represents a command or action. So far, the statements we have seen are assignments and print statements.
To simplify an expression by performing the operations in order to yield a single value.
A combination of variables, operators, and values that represents a single result.
One of the values on which an operator operates.
A reserved word that is used to parse a program; you cannot use keywords like if, def, and while as variable names.
A graphical representation of a set of variables and the values they refer to.
A statement that assigns a value to a variable.
A name that refers to a value.
The process of finding and correcting bugs.
An error in a program.
To examine a program and analyze the syntactic structure.
The rules that govern the structure of a program.
One of the basic elements of the syntactic structure of a program, analogous to a word in a natural language.
Any one of the languages that people have designed for specific purposes, such as representing mathematical ideas or computer programs; all programming languages are formal languages.
Any one of the languages that people speak that evolved naturally.
A type that represents sequences of characters.
A type that represents numbers with fractional parts.
A type that represents whole numbers.
A category of values. The types we have seen so far are integers (type int), floatingpoint numbers (type float), and strings (type str).
One of the basic units of data, like a number or string, that a program manipulates.
A special symbol that represents a simple computation like addition, multiplication, or string concatenation.
An instruction that causes the Python interpreter to display a value on the screen.
A set of instructions that specifies a computation.
Characters displayed by the interpreter to indicate that it is ready to take input from the user.
A program that reads another program and executes it
A property of a program that can run on more than one kind of computer.
A programming language that is designed to be easy for a computer to run; also called “machine language” or “assembly language”.
A programming language like Python that is designed to be easy for humans to read and write.
The process of formulating a problem, finding a solution, and expressing it.
information hiding:
The principle that the interface provided by an object should not depend on its implementation, in particular the representation of its attributes.