Python Forum
Store Previous date to calculate delta from today
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Store Previous date to calculate delta from today
#6
I was running tests with it and I don't really see the problem. The first time you run it, you can grab the latest time, as that will be the first login. I also don't really know how you plan on running this program. You may need to use a txt file in which to save the list if the program is not always running, other than that I only did one small change to your code. I changed line 11 to the following.
previouslogindate = datetime.datetime.strptime(previousloginlist[len(previousloginlist)-1], Format)
Then if you did plan on saving the code would look something like that (I used l for short)
l = []
l = loadData()
if not l:
    l = [datetime.datetime.now()]

#code

saveData(l)
If you have any other problems I'm happy to help
Reply


Messages In This Thread
RE: Store Previous date to calculate delta from today - by SheeppOSU - May-07-2020, 10:59 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Compare current date on calendar with date format file name Fioravanti 1 369 Mar-26-2024, 08:23 AM
Last Post: Pedroski55
  Python date format changes to date & time 1418 4 786 Jan-20-2024, 04:45 AM
Last Post: 1418
  i tried to install python for the first time today and pretty certain im being remote brianlj 2 630 Oct-03-2023, 11:15 AM
Last Post: snippsat
  Calculate next rows based on previous values of array divon 0 1,892 Nov-23-2021, 04:44 AM
Last Post: divon
  Date format and past date check function Turtle 5 4,533 Oct-22-2021, 09:45 PM
Last Post: deanhystad
  Datetime strp\delta problems korenron 2 2,167 Jun-13-2021, 10:35 AM
Last Post: korenron
  Need to identify only files created today. tester_V 5 4,825 Feb-18-2021, 06:32 AM
Last Post: tester_V
  How to add previous date infront of every unique customer id's invoice date ur_enegmatic 1 2,308 Feb-06-2021, 10:48 PM
Last Post: eddywinch82
  Make list of dates between today back to n days Mekala 3 2,462 Oct-03-2020, 01:01 PM
Last Post: ibreeden
  How to add date and years(integer) to get a date NG0824 4 2,979 Sep-03-2020, 02:25 PM
Last Post: NG0824

Forum Jump:

User Panel Messages

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