您可以这样处理字符串:
x = response.splitlines()
x = x[-1]
x = x.split(" = ")[1]
min, avg, max = x.split("/")[:3]
min, avg, max = map(float, x.split("/")[:3])