Weekly Standup Meeting

During the weekly stand up two things happen. First: You should meet with your teammate(s) to verify everything is on track. You should be talking during the week either through email, in person, discussion forum, etc. But this time is set aside for formal discussions. Second: You will meet one on one with the instructor…

Recursion in Python

We’ve seen examples of where one function calls another. For example inside of main, you see that load_data(), total(), and average() are called. Recursion is where a function, calls itself. As you can see, calling yourself is “easy” but also “dangerous”. You can easily end up in an infinite recursive loop, that is until you…