Python - Ekstrak nilai min dan maks per setiap nama kolom

# show me the column names --> predictors
cols = [x for in df.columns if not in ('resp_var', 'name')]; cols


# extract the min and max values per each predictors
print("{")
for i, name in enumerate(cols):
    print(f'"{name}":{{"min":{df[name].min()}, "max":{df[name].max()}}} {"," if i>(len(col)-1) else ""}')
print("}")   
Andrea Perlato