Answer:
Following are the code to this question:
import datetime #import datetime
today=datetime.datetime.now().date()#define today variable that takes current date
ships=today+datetime.timedelta(days=5)#define ships variable that adds five days in the current date
print("The items are purchase today and it will be shipped on: ", ships)#print value or "Desired Output"
Output:
please find the attached file.
Step-by-step explanation:
In the above-given code, the "datetime" package is imported after that, two variable "today and ships" is defined.
In the "today" variable, a "datetime" is used, that uses the "date" method, that holds the current date value.
In the next step, the ships variable is defined, which uses today variable to add five days value into the current date, and print its value with the message.