Computer Science, asked by harsimar5544, 4 months ago

Find the Output of the following Python code
a = 25
b = 10
area= 0.5*a*b
print(area)

Answers

Answered by venkatalakshmi0501
1

Find the Output of the following Python code

a = 25

b = 10

area= 0.5*a*b

print(area)

Answered by jack4610
1

Answer:

125

Explanation:

in this the value of area will get displayed

0.5 × 25 × 10

5 × 25

125

hope it helps !!

Similar questions