Combining Python Statements and Functions Exercise

Join over 2 million students who advanced their careers with 365 Data Science. Learn from instructors who have worked at Meta, Spotify, Google, IKEA, Netflix, and Coca-Cola and master Python, SQL, Excel, machine learning, data analysis, AI fundamentals, and more.

Start for Free
Martin Ganchev 21 Apr 2023 1 min read

Combining Statements and Functions Exercise: Define a function that determines whether the surface area of a cube is greater than its volume.

The tutorial you may need: An introduction to Python Functions

python solution image, combining statements in python

For this exercise in combining statements, apart from the formulas for the surface and volume, you’ll need to know three big concepts: conditional statements, functions, and how to implement conditional statements in functions.

We start by defining a function that takes a single parameter (a) - the length of the side of the cube.

def surface_or_volume(a):

We follow that with an IF statement testing whether the volume is larger. Recall that the volume of a cube is the length of its sides to the power of three.

We can calculate that in two ways – either by using the ‘pow()’ function or the algorithmic operator ‘**’. In our specific case, the two ways of writing it out are as follows:

pow(a,3)

and

a**3

Now, the surface area, on the other hand, is calculated by finding the area for one face of the cube and multiplying it by 6 (for each of the 6 identical sides).

Therefore, the surface area would be equal to ‘6*a**2’or ‘6*pow(a,2)’. Knowing all of this, we can write out the initial IF statement we require, and it would look like this:

if pow(a,3) > 6*a**2:

We then return the appropriate message “The volume is greater.”. Remember to indent the return command, so that it is only executed within the IF statement.

if pow(a,3) > 6*a**2:
 
        return ("The volume is greater.")

Next, we add another IF statement checking whether the surface area is greater.

Knowing the proper ways to express volume and area, our IF statement would look like this:

if a**3 < 6*a**2:

Now, just as with the first IF statement, we indent and return the appropriate message.

if a**3 < 6*a**2:
 
        return ("The surface are is greater.")

By utilizing the fact that returning a value exits the function, we simply add another return statement at the end that returns a message indicating area and volume are equal. We comment a lot on that in this exercise. Make sure not to indent it under any of the prior IF statements. Reaching this line indicates that the parameter contradicts both IF statements preceding it, which makes adding any ELSE statements here unnecessary. Thus, our entire code looks like this:

def surface_or_volume(a):
 
    if pow(a,3) > 6*a**2:
 
        return ("The volume is greater.")
 
    if a**3 < 6*a**2:
 
        return ("The surface  is greater.")
 
    return ("They are equal.")

To ensure our work is accurate, call the function several times using different values for the parameters and check whether our code works as intended.

Make sure to test for all possible scenarios.

That wasn’t so bad was it?

If you want to keep learning and practicing, check out our Introduction to Python course.

Martin Ganchev

Instructor at 365 Data Science

Martin holds an MSc degree in Economic and Social Sciences from Bocconi University. His diverse academic and research experience combined with his friendly and explanatory approach to teaching have made him one of the most beloved instructors on our team. Some of the courses he has authored include: SQL, SQL + Tableau, SQL+Tableau+Python, Introduction to Python, Introduction to Jupyter, to name a few.

Top