Study Guide

3.1.6 Fix This Program CodeHS Answers

3.1.6 Fix This Program CodeHS Answers

The most common answer is:

print “N”
print “O”
print “R”
print “E”
print “S”

Add parentheses around the strings you’re printing to fix this Python program and ensure it works correctly. This syntax is required in Python 3.

Here’s the corrected version of the code:

print("N")
print("O")
print("R")
print("E")
print("S")