136k views
0 votes
What will the output be from the following program?

print("hi")
print(3 + 4)
print("bye")

1 Answer

1 vote

Answer:

I'm going to assume this is Python syntax. In that case, it will print

hi

7

bye

Step-by-step explanation:

You are using the print function to print what is in the parenthesis, so thats why itll print what is stated above.

User Sorax
by
7.8k points

No related questions found