Computer Science, asked by amishafilomeena1003, 6 months ago

please answer this question of computer working should be in IDLE answer all of them python​

Attachments:

Answers

Answered by luisecubero77
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