100k views
4 votes
Which code will allow Joe to print Coding is fun. on the screen? print("Coding is fun.") print(Coding is fun.) print = (Coding is fun.) print = Coding is fun.

User HeWillem
by
5.0k points

2 Answers

4 votes

Answer:

print(“Coding is fun.”)

Step-by-step explanation:

User Sagivf
by
6.1k points
1 vote

Answer:

print(“Coding is fun.”)

Step-by-step explanation:

The proper format for a print statement is usually you have the print statement followed by the string in quotes in parentheses.

Hope this helped!

User Pablo Estevez
by
5.7k points