Assignment 2: Python Functions, Classes, and Modules
Assignment 2: Python Functions and Classes¶
Part I: Exploring the Python Standard Library¶
Skim the documentation for the datetime module
1. Import the datetime
module¶
Functions, Classes, and Modules
Python Functions, Classes, and Modules¶
For longer and more complex tasks, it is important to organize your code into reuseable elements. For example, if you find yourself cutting and pasting the same or similar lines of code over and over, you probably need to define a function to encapsulate that code and make it reusable. An important principle in programming in DRY more ...