422,608 views
9 votes
9 votes
What is displayed when you run the following program?

print("30 + 10")
print(5 + 8)

30 + 10
5 + 8
30 + 10, , 5 + 8

40
13
40, , 13

30 + 10
13
30 + 10, , 13

40
5 + 8
40, , 5 + 8

User Fersarr
by
2.7k points

1 Answer

8 votes
8 votes

Answer:

print("30 + 10") will print 30 + 10 print(5+8) will print 13

Step-by-step explanation:

This is in python the "print" will simply print text.

User Colm
by
2.7k points