Python Forum
finding yesterday and tomorrrow without using date.time module
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
finding yesterday and tomorrrow without using date.time module
#1
self learning python and been stuck trying to figure this out.
Trying to output both the day before and the day after a given date without using the date.time module.
script so far:

#!/usr/bin/env python3


####enter date in yyyymmdd format

def dbda(today):
    if len (today) != 8:
       return '00000000'
    else:
       year = int(today[0:4])
       month = int(today[4:6])
       day = int(today[6:])

####calculate leap year

       lyear = year % 4
       if lyear == 0:
          feb_max = 29
       else:
          feb_max = 28

       lyear = year % 100
       if lyear == 0:
          feb_max = 28

       lyear = year % 400
       if lyear == 0:
          feb_max = 29

       next_day = day + 1 #tomorrow
       pass_day = day - 1 #yesterday

       mon_max = { 1:31, 2:feb_max, 3:31, 4:30, 5:31, 6:30, 7:31, 8:31, 9:30, 10:31, 11:30, 12:31}
Reply


Messages In This Thread
finding yesterday and tomorrrow without using date.time module - by apexman - Feb-22-2019, 06:47 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Using zipfile module - finding folders not files darter1010 2 284 Apr-06-2024, 07:22 AM
Last Post: Pedroski55
  Compare current date on calendar with date format file name Fioravanti 1 253 Mar-26-2024, 08:23 AM
Last Post: Pedroski55
  Date Time Series Help...Please spra8560 2 382 Feb-01-2024, 01:38 PM
Last Post: spra8560
  Python date format changes to date & time 1418 4 627 Jan-20-2024, 04:45 AM
Last Post: 1418
  Downloading time zone aware files, getting wrong files(by date))s tester_V 9 1,059 Jul-23-2023, 08:32 AM
Last Post: deanhystad
  Formatting a date time string read from a csv file DosAtPython 5 1,305 Jun-19-2023, 02:12 PM
Last Post: DosAtPython
  Problem with module time and leap seconds Pedroski55 3 1,259 Oct-07-2022, 11:27 PM
Last Post: Pedroski55
  Wait til a date and time KatManDEW 2 1,440 Mar-11-2022, 08:05 PM
Last Post: KatManDEW
  Module 'time' has no attribute 'clock' Sophie 4 3,133 Jan-25-2022, 08:05 PM
Last Post: Sophie
  Date format and past date check function Turtle 5 4,289 Oct-22-2021, 09:45 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020