Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
JohnPaulMueller
GitHub Repository: JohnPaulMueller/BPP4D3E
Path: blob/main/BPP4D3E_11_Packages.py
429 views
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
11
def SayHello(Name):
12
print("Hello ", Name)
13
return
14
def SayGoodbye(Name):
15
print("Goodbye ", Name)
16
return
17
18
19
# In[ ]:
20
21
22
23
24
25