You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'Problem 1: We kicked off our 100 Days of Code project on March 30th, 2017. Calculate what date we finished the full 100 days!')
6
+
print('Solution:')
7
+
kicked_off_date=datetime(2017, 3, 30)
8
+
delta=timedelta(days=100)
9
+
finish_date=kicked_off_date+delta
10
+
print(f'Code project started on {kicked_off_date.date()} finalizing 100 days later on: {finish_date.date()}')
11
+
12
+
print(
13
+
"Problem 2: PyBites was founded on the 19th of December 2016. We're attending our first PyCon together on May 8th, 2018. Can you calculate how many days from PyBites' inception to our first PyCon meet up?")
0 commit comments