<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">def greet(name):
    """Greets the person called name
    followed by conversation starter.    
    &lt;more details could go here&gt;
    
    name: the person to greet
    Precondition: name is a string"""
    print('Hello '+name+'!')
    print('How are you?')
    
greet("Professor Lee")
greet("Professor Bracy")
greet("TA Natalie")
</pre></body></html>