whyyoubullyme81 whyyoubullyme81 20-11-2020 Computers and Technology contestada Finish the code of the function that finds the average of two numbers. def ave(a, b, c): sum = a + b + c ____ sum / 3 num = ave(3, 5, 10) print (num)