Commit 840a3915 authored by Mario Chirinos's avatar Mario Chirinos

update

parent 3aff14ed
...@@ -14,7 +14,9 @@ def getMinMax(clase): ...@@ -14,7 +14,9 @@ def getMinMax(clase):
values = [] values = []
for k, v in data.items(): for k, v in data.items():
values.append(v[clase]) values.append(v[clase])
print(data) minval = min(values)
maxval = max(values)
print(minval, maxval)
#=============================================================================== #===============================================================================
def main(argv): def main(argv):
......
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 to comment