From 7ae6185ee160d93cc489cd53655282c5d732293b Mon Sep 17 00:00:00 2001 From: Ian-Qu <158114599+Ian-Qu@users.noreply.github.com> Date: Mon, 30 Sep 2024 17:04:05 -0400 Subject: [PATCH] Ian quaye GitHub training (#8) * GitHub Training: Ian Quaye * Fixed Commenting --------- Co-authored-by: Ian Quaye Co-authored-by: Shivam Patel <51758157+shivammpat@users.noreply.github.com> --- introductions/ianquaye.py | 4 ++++ main.py | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 introductions/ianquaye.py diff --git a/introductions/ianquaye.py b/introductions/ianquaye.py new file mode 100644 index 0000000..2836d92 --- /dev/null +++ b/introductions/ianquaye.py @@ -0,0 +1,4 @@ +def intro(): + print('Hi! My name is Ian Quaye. I\'m a Sophmore majoring in Computer Science and major.' + + '\nI am excited to join the team and I hope I will be able to be helpful to you all this year.'+ + '\nI enjoy playing video games, whistling, and I am trying to learn how to cook.\n') diff --git a/main.py b/main.py index 079b33e..477a9b7 100644 --- a/main.py +++ b/main.py @@ -5,10 +5,10 @@ from introductions import shivampatel # import the file containing your individual introduction blurb from introductions import kashvichandwani from introductions import ivanz +from introductions import ianquaye from introductions import aaronordonez from introductions import mokshithanelluri from introductions import matthewschaming - # Put all imports above this line def main(): @@ -16,10 +16,10 @@ def main(): shivampatel.intro() kashvichandwani.intro() ivanz.intro() + ianquaye.intro() aaronordonez.intro() mokshithanelluri.intro() matthewschaming.intro() - # Call you intro function above this line