Basics
Operators and IPO diagrams
Varias
IF
For Loop
150

Location or space in your computer's RAM memory

What is a variable? 

150

Element or section of an IPO diagram to list all the elements I need to solve a problem

Input

150

A variable name can begin with a number

False

150

What keyword starts a conditional statement?

If

150

What keyword starts a for loop?

for

250

What is the function to get user data from the keyboard?

input()

250

What operator gives the remainder of a division?

The % operator

250

These are the 3 elements included in a program header

Author

Date

Description

250

What keyword is used for the alternative condition?

else

250

What function creates a sequence from 0 to n-1?

range(n)

375

Operator(s) that can add more elements besides text to the print() function

The , or the + (concatenate operator)

375

What does the ** operator do?

Exponentiation (raises to a power)

375
2 Cell types I can add in a Colab notebook

Text, code. We can also include the output

375

What keyword checks an additional condition after if?

elif

375

Name the 3 elements that control the range() function in a for loop

(start, stop, step)

500

Variables in programming languages allow you to store different values; these values are known as

Data types
500
Name two statements that control the flow of your program

conditions (if) and loops (for)

500

What operator checks if two values are equal?

The == operator

500

What symbol must appear at the end of an if statement line?

: (colon)

500

What keyword exits a loop prematurely?

break

622

What keyword is used to import a module in Python?

import

622

What operator is used for floor division (division without remainder)?

The //

622

How do you convert the string '42' to an integer?

int('42')

622

What operators combine multiple conditions? (Name two)

and, or (also: not)

622

What keyword skips to the next iteration of a loop?

continue