Answer:
A. print ("I can code.")
Step-by-step explanation:
In this scenario, Cody needs to print a message to the screen using Python. The command which shows the correct way to code a print statement is print ("I can code.").
In Python programming, the print () function is used for printing a specific output message. The syntax for the print function includes using double quotation marks to enclose the text (string).
An example of an executable code using Python programming language is;
Print ("1. RED")
Print ("2. BLUE")
COLOR = Int(input("Please select your favorite color by entering a number:"))
If (COLOR == 1);
Print ("You chose Color Red")
elif (COLOR == 2);
Print ("You chose Color Blue")
else;
Print ("You have entered a wrong number")