重複の可能性:
function in function
どうすれば関数を作成できますか。1 つだけでなく、すべての悪い値を表示しますか?
def get_bad_results(person_results):
for i in person_results:
if i[1]>i[3] or i[1]<i[2]:
return i[0]
test_results = [["White blood cells",8.5,2,7],
["Neutrophils",5.3,2.5,5],
["Red blood cells", 12.4, 9,15]]
a = get_bad_results(test_results)
print a
見せるWhite blood cells
それ以外の
White blood cells, Neutrophils