Hello, As an alternative answer to Q33: ```python yesterday = np.datetime64('today') - 1 today = np.datetime64('today') tomorrow = np.datetime64('today') + 1 print(yesterday, today, tomorrow) ```