please answer this question of computer working should be in IDLE answer all of them
Attachments:
Answers
Answered by
1
Answer:
radius = float(input("Input radius "))
pi = 3.14
area = pow(radius,2) * pi
print("Area is: ",area)
le = float(input("Input lenght "))
br = float(input("Input breath "))
area = le * br
print("Area is: ",area)
Explanation:
Attachments:
Similar questions