Currently using bash I am using this string in order to add 27 days to a specific date that is entered by the user:
d1="$(date -d "$date +27 days" +"%a %b %d %Y")"
I am currently trying to do something in python (trying to learn python) that is similar where I am trying to add 27 days to a specific date
import datetime
print ("Last billing run date mm/dd/yy")
d = input()
a = datetime.timedelta(days=27)
b = datetime.timedelta(days=45)
x = d + b
y = d + a
print(x)
print(y)