b) This problem is asking me to convert a message which is in upper case to lower case.
c) You will need to do the following:
1. You need to tell the computer what 'message' equals.
2. You need to use an input statement in order for it to know that you are using what is entered after 'Loud: ' to then convert into 'Quiet: '.
3. You need to tell it to print 'Quiet: ' plus the message inputted in lower case form.
d) You need to remember a few things that were taught previously.
- Input: asking the user for input: Week 1 Module 1
- Print: Week 1 Module 1 - Changing cases: Week 2 Module 2
e) My attempts:
This was my first attempt. I received a syntax error pointing at the empty brackets. I then looked back on how to change the text to lower case and I discovered my mistake. I needed to put message.lower().

This was my second attempt. I applied my corrections and I ran the program to test it. I entered a message in upper case and then hit enter which then converted the message to lower case. Since this is what the brief was, I decided to mark my work.
This was my final results and my code worked!
f) My main error was working out how to change the message into lowercase. I needed to look back on previous examples given in order to complete the problem.
g)
My Code:
h) The sample solution and my solution are basically the same.
The differences are:
- I used " instead of '
- I used a + instead of a ,
- I used the word 'message' they used 'line'
These differences do not make a difference in the outcome. They are only slight and are not apparent in the outcome. I was marked correctly so they must not have mattered.