This commit is contained in:
Torma Kristóf 2021-04-25 13:07:10 +02:00
parent 77490bae60
commit b0d2c66f09
3 changed files with 6 additions and 6 deletions

View File

@ -22,8 +22,8 @@ except KeyboardInterrupt:
for datetime in DATETIMES: for datetime in DATETIMES:
dts = datetime.strftime("%m/%d/%Y, %H:%M:%S") dts = datetime.strftime("%m/%d/%Y, %H:%M:%S")
if dts not in dt: if dts not in dt:
dt[strftime("%m/%d/%Y, %H:%M:%S")] = 1 dt[dts] = 1
else: else:
dt[strftime("%m/%d/%Y, %H:%M:%S")] +=1 dt[dts] +=1
for key, value in dt: for key, value in dt:
print(key,",",value) print(key,",",value)

View File

@ -28,8 +28,8 @@ except KeyboardInterrupt:
for datetime in DATETIMES: for datetime in DATETIMES:
dts = datetime.strftime("%m/%d/%Y, %H:%M:%S") dts = datetime.strftime("%m/%d/%Y, %H:%M:%S")
if dts not in dt: if dts not in dt:
dt[strftime("%m/%d/%Y, %H:%M:%S")] = 1 dt[dts] = 1
else: else:
dt[strftime("%m/%d/%Y, %H:%M:%S")] +=1 dt[dts] +=1
for key, value in dt: for key, value in dt:
print(key,",",value) print(key,",",value)

View File

@ -22,8 +22,8 @@ except KeyboardInterrupt:
for datetime in DATETIMES: for datetime in DATETIMES:
dts = datetime.strftime("%m/%d/%Y, %H:%M:%S") dts = datetime.strftime("%m/%d/%Y, %H:%M:%S")
if dts not in dt: if dts not in dt:
dt[strftime("%m/%d/%Y, %H:%M:%S")] = 1 dt[dts] = 1
else: else:
dt[strftime("%m/%d/%Y, %H:%M:%S")] +=1 dt[dts] +=1
for key, value in dt: for key, value in dt:
print(key,",",value) print(key,",",value)