Write a program to calculate and print the volume of a cylender
Topic: Write a program to calculate and print the volume of a cylender
Solution
r = 3 h = 5 pi = 3.14 volume = pi*(r**2)*h print(volume)
List all Python Programs
Solution
r = 3 h = 5 pi = 3.14 volume = pi*(r**2)*h print(volume)