Coding Task: 04.01 The Most Amazing Year Level

Which year level is the most amazing? Yours, of course!

Your Task

In the editor below, fill in the blanks (________) so that the program asks the user for their year level, then print their year level back to them by saying it’s the most amazing year level in the school!

Python Reference Sheet

Remember to use the Python reference sheet to help you with your code! Click on one of the buttons below:

Requirements

  • The program should run without any errors.
  • The program should ask the user to enter a year level and then display the text Year <level> is the most amazing year level! onto the screen, where <level> is replaced with whatever the user typed in.
  • Hint: Don’t just type in your year level in the code because that will always print whatever you typed in, not the user! You will need to use a variable to store what the user types in for their year level!

Example

Below is an example of how the program should run if you entered 7 as your year level:

Enter your year level: 7
Year 7 is the most amazing year level!
Scroll to Top