KnowledgeBoat Logo

Computer Science

Find the volume of the cylinder (πr2h) as shown:

Radius = 8 cm
Height = 15 cm

Python

Python Data Handling

19 Likes

Answer

import math

r = 8
h = 15
v = math.pi * r * r * h

print("Volume of Cylinder =", v)

Output

Volume of Cylinder = 3015.928947446201

Answered By

8 Likes


Related Questions