dict for
This commit is contained in:
parent
b0d2c66f09
commit
bc9d2493a9
@ -25,5 +25,5 @@ except KeyboardInterrupt:
|
|||||||
dt[dts] = 1
|
dt[dts] = 1
|
||||||
else:
|
else:
|
||||||
dt[dts] +=1
|
dt[dts] +=1
|
||||||
for key, value in dt:
|
for key in dt:
|
||||||
print(key,",",value)
|
print(key,",",dt[key])
|
||||||
|
@ -31,5 +31,5 @@ except KeyboardInterrupt:
|
|||||||
dt[dts] = 1
|
dt[dts] = 1
|
||||||
else:
|
else:
|
||||||
dt[dts] +=1
|
dt[dts] +=1
|
||||||
for key, value in dt:
|
for key in dt:
|
||||||
print(key,",",value)
|
print(key,",",dt[key])
|
||||||
|
@ -25,5 +25,5 @@ except KeyboardInterrupt:
|
|||||||
dt[dts] = 1
|
dt[dts] = 1
|
||||||
else:
|
else:
|
||||||
dt[dts] +=1
|
dt[dts] +=1
|
||||||
for key, value in dt:
|
for key in dt:
|
||||||
print(key,",",value)
|
print(key,",",dt[key])
|
||||||
|
Loading…
Reference in New Issue
Block a user