76.2k views
22 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 Sigy
by
4.5k points

1 Answer

11 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 DuXing
by
4.9k points