Python program to find the volume of a sphere
Link to all related video in the playlist "Python quick and dirty sample source code"
https://dailymotion.com/playlist/x74cx0
source code
pi = 3.14
r = 6
V = 4 / 3 * pi * (r ** 3)
print('volume of the sphere is', V)
Bình luận