Dec 252013
 

Rather than let people live with the running disagreement that’s been rampant in my house, here’s a simple little script to tell you if you should deck the hall or halls before the hanging of the green or greens service at church.

# Fill these in with the appropriate values.
HALLWAYS = ["bedroom", "office"]
GREENERY = ["left", "right", "choir loft"]

if len(HALLWAYS) > 1:
    print("Deck the hall*s*!")
else:
    print("Deck the hall!")

if len(GREENERY) > 1:
    print("Hang the green*s*!")
else: 
    print("Hang the green!")

print("Merry Christmas!")

I hope this helps clear things up. Merry Christmas everyone.

 Posted by at 6:00 AM