Python 1 Flashcards
1
Q
variable
A
allows you to store data in the program
2
Q
comment
A
note in the code for the programmer
3
Q
input
A
something the user types in
4
Q
A
prints anything after this command to the screen
5
Q
debug
A
solve issues with code
6
Q
triple speech marks
A
for long sentences or paragraphs of text
7
Q
from
A
tells the program which library to import from
8
Q
import
A
adds functionality from a library
9
Q
sleep
A
a pause in seconds
10
Q
string
A
letter or characters that are printed in the program
11
Q
IDLE
A
used to write and compile Python code
12
Q
library
A
gives you access to other Python features. An example is import random or from time import sleep