-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcollaboration.py
More file actions
27 lines (23 loc) · 838 Bytes
/
collaboration.py
File metadata and controls
27 lines (23 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# GitHub Workshop Contributors Program
# Each participant should define a function with their name
# Example: def amal(): print("Hello from Amal!")
# Then call your function at the end of the file.
# -----------------------------
# Add your function below
# -----------------------------
def amal():
print("Hello everyone! This is Amal — let's make Git fun together!")
def shiva():
print("Hello everyone! My name is shiva — let's make Git fun together!")
def ConfidentHero():
print("\n\nHello all, I am Akhil -- let's code together!!\n\n")
def thejuskk():
print("Hi this is thejuskk from cse. nice to meet you")
# -----------------------------
# Call your function below
# -----------------------------
amal()
thejuskk()
shiva()
ConfidentHero()
print("\nProgram executed successfully! Great work, everyone!")