ups
This commit is contained in:
parent
77490bae60
commit
b0d2c66f09
@ -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)
|
||||||
|
@ -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)
|
||||||
|
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user