Python Flashcards
1
Q
variable
A
Stores and names a piece of data.
2
Q
boolean
A
Data type that can only be True (1) or False (0).
3
Q
string
A
Function that can contain letters, numbers, and symbols.
4
Q
whitespace
A
Formatting used to properly structure code.
5
Q
editor
A
Area within which code is written.
6
Q
interpreter
A
Display that runs your code line by line while checking for any errors.
7
Q
comment
A
#
8
Q
comment block
A
””
9
Q
addition
A
+
10
Q
subtraction
A
-
11
Q
multiplication
A
*
12
Q
division
A
/
13
Q
exponentiation
A
**
14
Q
modulo division resulting in just the remainder
A
%
15
Q
escape character
A
\
16
Q
string length
A
len( )
17
Q
remove string capitalization
A
.lower()
18
Q
capitalize string
A
.upper()