Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions introductions/sophiaabbassi.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
def intro():
print('Hi! My name is Sophie and I am a junior doing Computer Engineering with a Comp Sci minor.\n' +
'I\'ve been apart of HKN as secretary, the marching band, EGC, and I\'m an SOE ambassador\n' +
'I joined to help and get better at coding for when I get a big girl job.\n')
2 changes: 2 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from introductions import aaronordonez
from introductions import mokshithanelluri
from introductions import matthewschaming
from introductions import sophiaabbassi
# Put all imports above this line

def main():
Expand All @@ -20,6 +21,7 @@ def main():
aaronordonez.intro()
mokshithanelluri.intro()
matthewschaming.intro()
sophiaabbassi.intro()
# Call you intro function above this line


Expand Down