Commit 8dd9b6c0 by Ethan Mertz

removing a useless file

parent f42709c3
Showing with 0 additions and 16 deletions
import re
d = {}
with open("plot_graph.py") as p:
for line in p:
var = re.findall("[\s]*([\w, ]+)[\s]*=[^=]", line)
if var:
d[var[0].strip()] = d.get(var[0].strip(), 0) + 1
l = []
for item in d:
l.append((d[item], item))
nl = sorted(l)
for i in range(100):
print(nl[i])
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment