Save
Practice questions for this set
Learn
Studied 7 terms
Nice work, you're crushing it
, Continue studying in Learn
Terms in this set (134)
booleans2 — try itWhich of the not not False
following does not equal True
True
not False
not not True
not not False
,leading_zero — try itIn place of the 1. In python 0.003 is the same as .003
... below, enter the number of the
statement you think is true:
1. In Python, 0.003 is the same as
.003
2. In Python, 0.003 is different from
.003
3. Both statements are true.
big_numbers — try itIn place of the 50000000000
..., enter the number 50 billion in a
way Python understands it
, arithmetic1 — try itIn place of the ... (3*4)+(5+6)
below, write the code version of
"The product of 3 and 4, plus the
sum of 5 and 6."
arithmetic2 — try itIn place of the ... 4*5-(4-3)
below, enter an expression that will
compute the difference between 4
multiplied by 5, and 4 minus 3