Respuesta :

The two statements to assign numapples with 10 and numoranges with 3 and its output is represented below:

numApples = 10

numOranges = 3

print("Apples:", numApples)

print("Oranges:", numOranges)

The code is written in python.

The variable numApples is assigned to an integer 10.

The variable numOranges is assigned to an integer 3.

Then we use the print statement to output the values of numApples and numOranges.

The bolded values in the code are keywords in python.  

read more: https://brainly.com/question/25506437

Ver imagen vintechnology