Python
Python
Python
Python
Python
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 the an example of:

myVariableName

camel case
200

The variables used by a function, which can be set when the function is called.

parameters

200

What's Python's command to declare a variable? 

There is no command to declare a variable.

200

The combination of spelling, punctuation and layout is?

syntax

300

EOL 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 can Python be used for?

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 () are used it indicates a __________ in Python.

Function

500

What does the command 'print()' do?

prints a string

500

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

Arithmetic operators

M
e
n
u