NICCEEEE's recent timeline updates
NICCEEEE

NICCEEEE

V2EX member #315947, joined on 2018-05-12 18:02:03 +08:00
NICCEEEE's recent replies
Jun 16, 2018
Replied to a topic by wsds Python Python 菜鸡请教
import collections

d = """a, 1.324171
b, 0.000126
c, 1.970941
a, 1.469649
b, 0.000124
c, 0.512929
a, 1.290920
b, 0.000118
c, 0.259524
a, 0.495958
b, 0.000123
c, 0.910949
a, 1.268038
b, 0.000118
c, 1.016419
a, 1.856081
b, 0.000120
c, 1.400075
a, 1.314131
b, 0.000140"""

L = [(i[0], i[3:]) for i in d.split('\n')]
data_dict = collections.defaultdict(int)

for i, j in L:
data_dict[i] += float(j)

print(data_dict)
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   3683 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 17ms · UTC 10:44 · PVG 18:44 · LAX 03:44 · JFK 06:44
♥ Do have faith in what you're doing.