Verified Answers
is a computer program that executes code written in the Python programming
language - CORRECT ANSWER Python interpreter
is a program that allows the user to execute one line of code at a time. - CORRECT
ANSWER interactive interpreter
Yes. Python is a case sensitive language. - CORRECT ANSWER Is Python case
sensitive?
# this is a comment - CORRECT ANSWER Phython Comments symbol
function displays variables or expression values.
print('Hello there') - CORRECT ANSWER print()
keep the output of a subsequent print statement on the same line separated by a
single space - CORRECT ANSWER end=' ' inside of print()
will read text entered by the user - CORRECT ANSWER input()
can be used to convert that string to the integer 123 - CORRECT ANSWER int()
function
, Value
Type
Identity - CORRECT ANSWER 3 defining Properties of Python objects
indicates whether the object's value is allowed to be changed. - CORRECT
ANSWER Mutability
gives the value of an object's identity. - CORRECT ANSWER id()
real number, like 98.6
and
fractional part even if that fraction is 0, as in 1.0 - CORRECT ANSWER floating-
point number
and
floating-point literal
1.0e-3.
The "e" stands for exponent - CORRECT ANSWER scientific notation
a value is too large to be stored in the memory - CORRECT ANSWER Overflow
occurs when....
exponent operator is **, as in x ** y - CORRECT ANSWER ** is