Hello.I am new in coding and would appreciate help in creating a code,in python,for calculating volume of a cone & cuboid | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Hello.I am new in coding and would appreciate help in creating a code,in python,for calculating volume of a cone & cuboid

PYTHON

27th Feb 2017, 10:32 AM
syd
2 Answers
+ 3
Hi there, I created them for you :) Check them out in my codes
27th Feb 2017, 11:46 AM
Chirag Bhansali
Chirag Bhansali - avatar
0
var cuboid = { length: 25, width: 50, height: 200 }; //your code goes here var x = cuboid.length var y = cuboid.width var z = cuboid.height console.log(x*y*z);
12th May 2021, 12:33 AM
Forrest Harjo
Forrest Harjo - avatar