Statements and Variables
Libraries
Values
Expressions
Python
100

A named code action that can be used in a program.

What is a function?

100

A collection of code from outside the program.

What is a library?

100

A value that is not in a variable.

What is a literal?

100

Containers for storing data values.

What is a variable?

100

A hashtag (#).

Which symbol does a comment start with?

200

A command that runs the code inside a function.

What is a function call?

200

This is contained within a library.

What is pre-written code functions?

200

The category of a value.

What is a data type?

200
+=

What is an increment?

200

Variables are containers for storing data values.

What is a variable?

300

Information that a function needs to know in order to run.

What is an argument?

300

In this function call, books.page(), books is the . . .

What is the library?

300

12

What is an iteger?

300

A piece of code that produces a value.

What is an expression?

300

The command to get the user to response.

What is input?

400

This is placed between the library and function name in a function call.

What is a dot operator?

400
In this function call, books.page(24), the number 24 is. . .

What is an argument?

400

12.5

What is a float?

400

Information given back by a function.

What is a return value?

400

print(Hello World) Error

What is a syntax error?

500

Allows the program to use code from inside a library.

What is import?

500

Math and random

What are common Python libraries?

500

str(num)

What is typecasting?

500

"Hello " + name + " , how are you?"

What is string concatenation?

500

.py

What is the file extension of a Python file?