# Pyramid # Define a function, that takes a number >n< and prints a pyramid of height >n<. # Examples: # pyramid(1) # X # pyramid(2) # X # X X X # pyramid(3) # X # X X X # X X X X X def pyramid(n): print("PYRAMID: Not implemented!") # Cross # Define a function, that takes a number >n< and prints a cross of size >n<. # You can assume, that >n< is odd and >n< > 2. # Examples: # cross(3) # X X # X # X X # cross(5) # X X # X X # X # X X # X X def cross(n): print("CROSS: Not implemented!") """ Test/Call your functions here """ pyramid(1) # pyramid(2) # pyramid(3) cross(3) # cross(5)