Module 6 Assignment

In this updated version, I've added the `datetime` module to retrieve the current time. The current time is then formatted using the %Y-%m-%d %H:%M:%S format, which represents the year, month, day, hour, minute, and second. However, I encountered a bug while trying to run my revised code. This was for the first segment. For the second segment, the original was almost unchanged and very simillar, however the timedelta allowed us to print the current time while subtracting 60 seconds. In the third segment `days` represents the number of days in the timedelta (100), `seconds` represents the number of seconds remaining after removing the days (37,380 seconds = 10 hours * 3600 seconds + 13 minutes * 60 seconds) Last but not least, the `datetime.now()` function shows us the current date and time. The` variable stores the result, and it is printed to the console