So I have a pprogram, and everything is ok except that the lists should be printed without the square brackets included. so my program asks people what shape they are interested in, then asks them what lengths they want each side of the shapes, then it calculates the volume of each of the three shapes. I have a def function for lengths of different shapes, which inputs them into a list, so for example:
This is an example of what it looks like:
I have them in a list like
cubeVolumes = []
then
def calcCubeVolumes(length):
volume1 = int(length) ** 3
cubeVolumes.append(volume1)
return volume1
and then it'll do that for the other two shapes too, so pyramid and ellipsoid, and then at the end it will print them into a list like:
"Your volumes for cube are: [ 54, 32, 12] etc. (print("Cube:", cubeVolumes)) to be exact
I really hope this makes sense, but my question is, how do I print each of the lists without the brackets? I need help printing a def function that converts each element to a string and adds commas in between inside a loop, except for the last item in the list.