python Flashcards
1
Q
what data type is this? “bababooey”
A
string
2
Q
what data type is this?”69420”
A
integer
3
Q
what data type is this?”3.1415”
A
float/real
4
Q
what data type is this?” true/false”
A
boolian
5
Q
what type of iteration stops?
A
for iteration
6
Q
what type of iteration goes on forever?
A
while iteration
7
Q
what does iteration mean?
A
loops
8
Q
in python, what does adding a hash(#) do
A
its a comment and does nothing to the actual code
9
Q
what are the two windows in python
A
shell window and programming window
10
Q
what does print do?
A
shows what is in the brackets on the shell window