Vocabulary
Debugging
Coding
Python Question
Output Prediction
100

The words that the acronym IDE stands for.

What is an Integrated Development Environment?

100

Correct this code:

inport turtle

turtle.getscreen()

import turtle

turtle.getscreen()

100
Write the first two lines needed in a Python with Turtle program.

import turtle

turtle.getscreen()

100

The number of items a variable can hold at one time.

What is just one?

100

What will the output be:

print("Hello World!")

Hello World!

200

An error where the code was typed incorrectly.

What is a syntax error?

200

Correct this code:

import turtle

t = turtle.Turtle

import turtle

t = turtle.Turtle()

200

What shape does this make:

t.forward(20)

t.right(120)

t.forward(20)

t.right(120)

t.forward(20)

t.right(120)

A triangle

200

In the code turtle.right(50), the number 50 uses this measurement.

What are degrees?

200

What will the output be?

color = "red"

color = "blue"

print(color)

blue

300

An error where the code is typed correctly, but does not do what it was intended to.

What is a logic error?

300

Correct this code:

turtle.left(50)

turtle.right50)

turtle.left(50)

turtle.left(50)

turtle.right(50)

turtle.left(50)

300

In a print statement, concatenate the words "pine" and "apple"

print("pine" + "apple")

300

The argument of a print statement goes here.

What is the console?

300

What will the output be?

age = "54"

print("You are " + age + "!")

You are 54!

400

Information that goes inside of a set of parenthesis.

What is an argument?

400

Correct this code:

import turtle

turtle.getscreen()

turtle.begin_fill("red")

import turtle

turtle.getscreen()

turtle.begin_fill()

400

Ask the user for input using the prompt "Number: ", and store the response in a variable named num.

num = input("Number: ")

400

When drawing a square and filling it, the .begin_fill() command should be placed here.

What is before the shape?

400

What will the output be?

place = "New York"

print("I want to visit" + place + "next year.")

I want to visitNew Yorknext year.

500

Creating a new string from combining other strings.

What is concatenation?

500

Correct this code:

color = "pink"

print("I like " + color " balloons")

color = "pink"

print("I like " + color + " balloons")

500

Create a variable named food that contains the string "tomato". Then in a print statement, concatenate that string with the phrase " is gross!"

food = "tomato"

print(food + " is gross!")

500

The amount of time the program will wait for input from the user.

What is forever?

500

What will the output be?

red = "blue"

blue = "red"

print("I like " + red + " but I don't like" + blue + " as much")

I like blue but I don't likered as much