First, click "Solve the Problem:" to see detailed instructions and useful information.
Second, try to code a solution to the problem using the embedded Python coding environment.
Third, if you are finding it difficult, you can click "Get Some Hints:" to see some tips to help you solve the problem. There is also music to help you focus midway down the page.
Finally, at the bottom of the page, there is an embedded Form where you can paste and upload your completed solution.
Once you have uploaded your code there will be a link to the solution at the end of the Form, so just like in the exam even if you can't entirely finish the solution, upload as much as you have been able to and you can then see the correct answer afterwards to see where (if anywhere) you went wrong.
To output something, we need the print command.
Remember in Python you must get the syntax exactly right. No spelling mistakes, and all lowercase!
Whatever you want to output must be inside brackets after print. The syntax for this is print().
To print a prewritten message (string) like this one, we need to have the message either in single or double quotation marks '' or "".
This isn't really a hint at this point... try print("Hello, World!")