Agenda 1. Video 2. Vocabulary 3. Practice I Can Recognize Vocabulary About Python Programing Language
Agenda 1. Video 2. Vocabulary 3. Practice I Can Recognize Vocabulary About Python Programing Language
Agenda
1. Video
2. Vocabulary
3. Practice
• 1. What is Python?
• 3. Why is it so popular?
Answers:
• 1. Python is one of the top three most popular
programming languages in 2019 and
everybody is learning Python either to make
their life easier or to expand their job
opportunities.
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; all programming languages
are _______ .
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