0
標化的,我有以下代碼:
對象不是在蟒蛇
c = containers[0].resources.limits['cpu']
cpulimit = int(c.split("m")[0])
這個作品,但是這個代碼:
int(containers[0].resources.limits['cpu'].split("m")[0])
給我:
TypeError: 'type' object is not subscriptable
containers[0].resources.limits
具有類型詞典: 即限制包含{ "cpu": "500m" , "memory": "512Mi"}
你的第二個示例使用'container'而不是'containers',是這裏還是你的代碼中的拼寫錯誤? –
使用這個'int(containers [0] .resources.limits ['cpu'] .split(「m」)[0])' –
@Błotosmętektypo fixed。 –