Respuesta :

The statement that assigns avg_sales with the average of num_sales1, num_sales2, and num_sales3 is given below.

What is the statement that executes the above output?

avg_scale = 0 num_scale1 = int(input()) num_scale2 = int(input()) num_scale3 = int(input())  avg_scale = (num_scale1+num_scale2+num_scale3)/3  

print('Average scale: {:.2f}'.format(avg_scale))

What is a statement in programming?

A statement is a single line of code in computer programming that accomplishes a specified purpose.

A statement is shown by the following piece of computer code from the Perl programming language. $a = 3; In this example sentence, a variable ($a) is given the value "3," which is then saved as a string.

Learn more about statement:
https://brainly.com/question/16922594

#SPJ1