![]() ![]() |
| |||||||||
| Hotspots: Slides and Code TA Corner Comments? Announcements FAQ Static Webspace | ||||||||||
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
def marry(husband, wife): sayVows(husband) sayVows(wife) pronounce(husband, wife) kiss(husband, wife) def sayVows(speaker): print speaker + ": I, " + speaker + " blah blah" def pronounce(man, woman): print "Official: " + man + " and " + woman print "Official: I now pronounce you husband and wife" print "Official: " + man + ", you may now kiss the bride" def kiss(p1, p2): print p1 + " and " + p2 + ": x x x, mmm!"