hi,
how to add days to current date in python

I mean, you are asking for adding some days to the current date.
do like this

e = date.today()+timedelta(days=10)
print "the added date is %s", e

this is perfect solution.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.