可能重複:
function in function功能輸出
我怎麼可以讓FUNC。顯示所有不良的價值觀,而不僅僅是一個?
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
http://stackoverflow.com/q/13308553/989121。請不要加倍張貼。保持這個地方乾淨。 – georg