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