1#!/usr/bin/env python 2# coding: utf-8 3 4# # Creating Code Groupings 5 6# ## Creating your first package 7 8# In[1]: 9 10 11def SayHello(Name): 12 print("Hello ", Name) 13 return 14def SayGoodbye(Name): 15 print("Goodbye ", Name) 16 return 17 18 19# In[ ]: 20 21 22 23 24 25