Python 1
Python 2
Python 3
Python 4
Python 5
100

An interpreted programming language.

Python.

100

What is Indentation?

The spaces at the beginning of a code line. 

100

A section of code that makes the computer repeat a set of instructions a certain number of times

for loop

100

What is a variable?

Containers for storing data values.

100

Which symbol does a comment start with?

A hashtag. (#)

200

What is and, or, and not

Three logical operators.

200

What naming convention is used in the example:

myVariableName

camel case

200

The info used by a function, which can be added when the function is called.

parameters

200

What is Python's command to declare a variable? 

There is no command to declare a variable.

200

The rules followed for spelling, punctuation and layout in Python is?

syntax

300

What does EOL mean in a error message:

End of line

300

What will happen if you skip the indentation in Python?

You will get a syntax error.
300

The results you get from a computer.

Output

300

When are variables created?

When you assign a value to them. 

300

What will happen if you put a comment at the end of a line?

Python will ignore the rest of the line. 

400

What types of programs can Python be used to create?

web development, software development, mathematics, and system scripting.

400

What is Indentation used for in Python?

To indicate a block of code.

400

What is Python's file extension?

.py

400

A set of pre-written code you can import to use in your programs.

library

400

Fixing errors in code is known as?

debugging

500

A keyword in Python used to create your own function.

def


500

A loop inside a loop.

nested loop

500

When () appear at the end of a keyword it indicates a __________ in Python.

Function

500

What does the command 'print()' do?

prints a some type of data

500

Symbols like +, *, -. / are know as?

Arithmetic operators