229k views
0 votes
8.3 Code Practice Write a function named "print_sum" that accepts three numbers as parameters and prints the sum. in python

User Rambler
by
6.3k points

1 Answer

2 votes

Answer:

def print_sum(a, b, c):

sum = a + b + c

print (sum)

return

print_sum(11, 9, 8)

Step-by-step explanation:

Thats the right number to get 28!

User Brissmyr
by
5.7k points