Exercise: London Bridge

Requirements:

  1. Develop a program with functions to print the following lyrics:
    
    London Bridge is falling down,
    falling down,
    falling down,
    London Bridge is falling down,
    My fair lady.
    
    
  2. Revise your program so that "Macau Bridge" will be falling down after "London Bridge".
  3. Your main program may look like
    
    def main():
        bridge("London")
        print()
        bridge("Macau")
    
    
  4. Compare your code with the one of your classmate. See who can get this task done with a fewer lines of program.