External Exam Download Resources Web Applications Games Recycle Bin

Exercise 1 - Mailing Label

An algorithm is required to construct and print an address label for a postal envelope, based on user input.

The end result should look like this:

The algorithm has been started. Finish it:

BEGIN mailingLabel
  INPUT recipient
  INPUT streetAddress
  ...

END

Code the algorithm here in Python once you have finished planning it above:

recipient = input("recipient: ")