diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..725733c Binary files /dev/null and b/.DS_Store differ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..538a27c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +my_super_secret_stuff.txt diff --git a/exercise1.py b/exercise1.py new file mode 100644 index 0000000..b7a0089 --- /dev/null +++ b/exercise1.py @@ -0,0 +1,15 @@ +def print_message(): + print("Hey there, guy") + +def print_art(): + print("###############") + print("### ##### ###") + print("### ##### ###") + print("###############") + print("###############") + print("#### ####") + print("###############") + +def hi_fellow(input): + if input == "I am an Insight Fellow!": + return "That's awesome! How is that random forest model going?" diff --git a/hello.py b/hello.py new file mode 100644 index 0000000..58668ba --- /dev/null +++ b/hello.py @@ -0,0 +1,6 @@ +def hello(name): +# Prints Hello name + print("Hello " + name) + +if __name__ == "__main__": + hello()