Study Guide

6.4.8 Sum Two Numbers CodeHS Answers

6.4.8 Sum Two Numbers CodeHS Answers

The most common answer is:

x = 5
y = 6
def sum_two_numbers(x, y):
return x + y
print(return)
sum_two_numbers(x,y)

It looks like there’s a slight misunderstanding in how it tries to print the return value of the sum_two_numbers function.

We need to call the function inside the print() function to print its return value, rather than printing a non-existent variable return.

Here’s the corrected version of code:

x = 5
y = 6

def sum_two_numbers(x, y):
    return x + y

# Correct way to print the return value of the function
print(sum_two_numbers(x, y))

This will output the sum of x and y, which is 11.