<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">"""
Module containing some postal helper functions

Author: Anne Bracy (awb93)
Date:   Feb 27, 2019
"""

def print_mailing_label(num, st, city, state, zip):
    """
    prints out the address in standard mailing label format
    """
    print("Ship to:")
    print(str(num) + " " + st)
    print(city+", "+state+"  "+zip)

</pre></body></html>