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 used in the example:
myVariableName
camel case
The info used by a function, which can be added when the function is called.
parameters
What is Python's command to declare a variable?
There is no command to declare a variable.
The rules followed for spelling, punctuation and layout in Python is?
syntax
What does EOL mean 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 types of programs can Python be used to create?
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 () appear at the end of a keyword it indicates a __________ in Python.
Function
What does the command 'print()' do?
prints a some type of data
Symbols like +, *, -. / are know as?
Arithmetic operators