Find the Output of the following Python code
a = 25
b = 10
area= 0.5*a*b
print(area)
Answers
Answered by
1
Find the Output of the following Python code
a = 25
b = 10
area= 0.5*a*b
print(area)
Answered by
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