An interpreted programming language.
Python.
What is Indentation?
The spaces at the beginning of a code line.
A section of code that makes the computer repeat a set of instructions a certain number of times.
for loop
What is a variable?
Containers for storing data values.
Which symbol does a comment start with?
A hashtag. (#)
What is and, or and not?
Three logical operators.
What naming convention is the an example of:
myVariableName
The variables used by a function, which can be set when the function is called.
parameters
What's Python's command to declare a variable?
There is no command to declare a variable.
The combination of spelling, punctuation and layout is?
syntax
EOL in a error message:
End of line
What will happen if you skip the indentation in Python?
The results you get from a computer.
Output
When are variables created?
When you assign a value to them.
What will happen if you put a comment at the end of a line?
Python will ignore the rest of the line.
What can Python be used for?
web development, software development, mathematics, and system scripting.
What is Indentation used for in Python?
To indicate a block of code.
What is Python's file extension?
.py
A set of pre-written code you can import to use in your programs.
library
Fixing errors in code is known as?
debugging
A keyword in Python used to create your own function.
def
A loop inside a loop.
nested loop
When () are used it indicates a __________ in Python.
Function
What does the command 'print()' do?
prints a string
Symbols like +, *, -. / are know as?
Arithmetic operators