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