66.3k views
5 votes
In Python, which of the following would correctly display the output PROGRAMMING ROCKS?

Print: "PROGRAMMING ROCKS"

print(PROGRAMMING ROCKS)

print = ("PROGRAMMING ROCKS")

print("PROGRAMMING ROCKS")

User Varian
by
4.6k points

1 Answer

1 vote

Answer:

print("PROGRAMMING ROCKS")

Step-by-step explanation:

See attached image for runtime proof :)

In Python, which of the following would correctly display the output PROGRAMMING ROCKS-example-1
User Apnorton
by
5.3k points