def tree(): # function defition """ This function displays a tree in the Python shell, it doesn't expect any parameters""" print(" | ") print(" /|\ ") print(" /|\ ") print(" //|\\ ") print(" / /|\ \ ") print(" | ") print(" ----- ") tree() # function call tree() # function call tree() # function call #--------------------- # IN-CLASS ACTIVITY 1 #--------------------- # Modify the function above to print out a snowflake # Don't forget to rename the function! # The function's name should be "snowflake"! # Print 5 snowflakes! # # send the program to my e-mail: natna20@gmail.com #