Posts by user46114 • 21 points
1 post
-
2
votes1
answer50
viewsQ: Ordering dictionary by obtaining values
I have the following function that I have done which is this : def funcao(elemento): x = [] for i in grafico: timestring = i["CrimeTime"] x.append(timestring) x= sorted(x) y= Counter(x).values()…