""" FYI (if you weren't aware): Current holders (2018) of political offices Calgary mayor = Naheed Nenshi Alberta premier = Rachael Notley Canadian prime minister = Justin Trudea James Tam = Current appointment? """ def displayRows(clients): for i in range (0,4,1): print(clients[i]) def initialize(): clients = [["NahNenshi", "268-5622", "T2P-2M5"], ["RachNotle", "427-2251", "T5K-2B6"], ["JustTrude", "992-4211", "K1A 0A2"], ["JamesTam ", "210-9455","T2N-1N4"] ] return(clients) def displayMayorPhone(clients): print("*******") print("Displaying postal code for the mayor") # Add your code here def displayPrimeMinisterPostalCode(clients): print("*******") print("Displaying postal code for the prime minister") # Add your code here def start(): clients = initialize() displayRows(clients) displayMayorPhone(clients) displayPrimeMinisterPostalCode(clients) start()