Respuesta :
Answer:
def print_sum(a, b, c):
sum = a + b + c
print (sum)
return
print_sum(11, 9, 8)
Explanation:
Thats the right number to get 28!
The function is an illustration of a sequential program, and does not require loops and conditional statements.
The print_sum function in Python, where comments are used to explain each line is as follows:
#This defines the function
def print_sum(n1, n2, n3):
#This calculates and prints the sum of the three numbers
print (n1 + n2 + n3)
At the end of the function, the sum of the three numbers is printed
Read more about functions at:
https://brainly.com/question/16613688