What is the value of the following Python Expression? print(36 / 4) *
9.0
9
0
9.00
Answers
Answer:
9
Explanation:
36/4=9
print is used for the output
Answer:
The answer is 9.0
Explanation:
Four different number types are supported by Python.
They are sometimes referred to as merely integers or ints and are positive or negative whole numbers without a comma.
Long (long integers): Also known as longs, these unbounded-size integers are denoted by an uppercase or lowercase L after being written like regular numbers.
float (actual values in floating point) They are also known as floats and are written with a decimal point separating the integer and fractional components. They represent real numbers. Floats can alternatively be written in scientific notation with the symbol E or e designating a power of 10 (2.5e2 = 2.5 x 102 = 250).
Complex numbers have the formula a + bJ, where a and b are floats and J (or j) stands for the square root of -1 (an imaginary number).
See more:
https://brainly.in/question/29434570
#SPJ3