fork download
  1. print("The Python 2.7 Volume Of A Sphere Program.")
  2. p = 3.14
  3. radi = 12
  4. multi = 1.3331
  5. volume = (radi**3) * (p) * (multi)
  6. print (p ," ", radi ," ", multi)
  7. volume_x = round(volume)
  8. print ("The Volume Of A Sphere ",volume_x)
Success #stdin #stdout 0.02s 7292KB
stdin
1
2
10
42
11
stdout
The Python 2.7 Volume Of A Sphere Program.
(3.14, ' ', 12, ' ', 1.3331)
('The Volume Of A Sphere ', 7233.0)