Summary
Keywords
Full Transcript
Learn how to write functions in Python: https://www.datacamp.com/courses/python-data-science-toolbox-part-1 Congratulations: you're now a bonafide Python function writer. On top of that, you have just written your very first Data Sciencey function. At this point, although you can write basic functions, you've really just touched the surface of function writing capabilities. In the following Chapters, you'll learn how to write functions that have default arguments so that when you call them, you don't always have to specify all the parameters; you'll learn how to write functions that can accept an arbitrary number of parameters and how to nest functions within one another; on top of this, you'll learn how to handle errors when writing functions, which will make your functions as robust as they need to be. Moreover, you'll see the importance of such techniques in Data Science by writing functions that are pertinent to the Data Science sphere like the Twitter DataFrame analysis that you just performed. I am pumped for this and can't wait to see you in the next Chapter!
