From d4c83efb3b72c7a3442bb659f391e995757acd72 Mon Sep 17 00:00:00 2001 From: Nile Kolenovic <125090982+nilekol@users.noreply.github.com> Date: Fri, 26 Apr 2024 17:23:38 -0400 Subject: [PATCH] GitHub Training Additions & Changes --- individual_introductions/nile_kolenovic.py | 7 +++++++ main.py | 2 ++ 2 files changed, 9 insertions(+) create mode 100644 individual_introductions/nile_kolenovic.py diff --git a/individual_introductions/nile_kolenovic.py b/individual_introductions/nile_kolenovic.py new file mode 100644 index 0000000..7e6d0fd --- /dev/null +++ b/individual_introductions/nile_kolenovic.py @@ -0,0 +1,7 @@ +def intro(): + print('Hi! My name is Nile Kolenovic. I am a 2nd year Computer Science and Philosophy major.\n' + + 'I am excited to learn more about telemetry and rocketry. I am always open to new ideas and suggestions!\n' + + + + ) \ No newline at end of file diff --git a/main.py b/main.py index 551043c..d55dd58 100644 --- a/main.py +++ b/main.py @@ -17,6 +17,7 @@ from individual_introductions import maksim_popov from individual_introductions import mahir_shah from individual_introductions import hannan_shah +from individual_introductions import nile_kolenovic def main(): shivam_patel.intro() # call your intro function @@ -34,6 +35,7 @@ def main(): maksim_popov.intro() mahir_shah.intro() hannan_shah.intro() + nile_kolenovic.intro() if __name__ == '__main__': main()