Functions-Quiz (GrA)

Write a Python function called find_largest(a, b, c) that takes three numbers as input and returns the largest of the three.

For example:

find_largest(2, 8, 5) should return 8

find_largest(0, -1, -3) should return 0

Scroll to Top