Python
What is the programming language we are using?
What command tells the computer to print the characters on the screen?
Variables
What is a value we want the computer to store
Bug
What is a problem in a program?
input("What is your name?")
What command asks the user to input their name and waits to they press the "Enter key"?
name = input("What is your name?)
What command asks the user to input their name and waits to they press the "Enter key" and stores it as the variable "name".
Replit
What is the website we are using to program?
Colour.green
What command turns text green?
import time
What command allows us to use functions associated with time?
Syntax
What are the grammatical rules for progreeamming?
from csinsc import *
Which line adds a library of code we can use written by somebody else.
time.sleep(3)
What command tells the computer to wait three seconds?
IDE
What is the proper name of a code editor?
# Instructions
What symbol is used to add comments to your code?
replit.clear()
What command clears the screen?