Skip to content

Commit 5dade75

Browse files
committed
[TEST] 데이터 순회 테스트코드
1 parent 88bea72 commit 5dade75

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

test/test.py

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
2+
disease_code = [
3+
'00', 'a1', 'a2', 'a3', 'a4', 'a5', 'a6', 'a7', 'a8', 'a9',
4+
'a10', 'a11', 'a12', 'b1', 'b2', 'b3', 'b4', 'b5', 'b6', 'b7',
5+
'b8'
6+
]
7+
8+
9+
disease_name = [
10+
'정상', '딸기잿빛곰파이병', '딸기흰가루병', '오이노균병', '오이흰가루병', '토마토흰가루병', '토마토잿빛곰파이병',
11+
'고추탄저병', '고추흰가루병', '파프리카흰가루병', '파프리카잘록병', '시설포도탄저병', '시설포도노균병',
12+
'냉해피해', '열과', '칼슘결핍', '일소피해', '축과병', '다량원소결핍 (N)', '다량원소결핍 (P)', '다량원소결핍 (K)'
13+
]
14+
15+
16+
def match_name(code):
17+
for index in range(len(disease_code)):
18+
if code == disease_code[index]:
19+
return (disease_name[index])
20+
return None
21+
22+
23+
if __name__ == "__main__":
24+
data = []
25+
26+
a = 1
27+
b = a + 2
28+
data.append({"name" : a, "confidence" :a })
29+
data.append({"name" : b, "confidence" :123 })
30+
31+
print(data)
32+
33+

0 commit comments

Comments
 (0)