From 00ded2918470b59249674371b196dae8450b6ec2 Mon Sep 17 00:00:00 2001 From: Sophia Abbassi Date: Fri, 7 Feb 2025 17:13:28 -0500 Subject: [PATCH] Github Training: Sophia Abbassi --- introductions/sophiaabbassi.py | 4 ++++ main.py | 2 ++ 2 files changed, 6 insertions(+) create mode 100644 introductions/sophiaabbassi.py diff --git a/introductions/sophiaabbassi.py b/introductions/sophiaabbassi.py new file mode 100644 index 0000000..e68c315 --- /dev/null +++ b/introductions/sophiaabbassi.py @@ -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') \ No newline at end of file diff --git a/main.py b/main.py index 477a9b7..e32d532 100644 --- a/main.py +++ b/main.py @@ -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(): @@ -20,6 +21,7 @@ def main(): aaronordonez.intro() mokshithanelluri.intro() matthewschaming.intro() + sophiaabbassi.intro() # Call you intro function above this line