python timestamp shift one day

Solutions on MaxInterview for python timestamp shift one day by the best coders in the world

showing results for - "python timestamp shift one day"
Gabriele
29 Jul 2018
1from datetime import datetime, timedelta
2print datetime.now() + timedelta(days=5, hours=-5)