d = [
['a', 50, 'c'],
['d', 100, 'f'],
['g', 200, 'i'],
['j', 10, 'l'],
['m', 150, 'o'],
['p', 5, 'r'],
['s', 300, 'u'],
['v', 75, 'x']
]
#d안에 숫자중 10~150까지 수가 몇개 있을까요?
#리스트
fruit = [
'apple', 'banana', 'cherry',
'durian', 'elderberry', 'mango',
'grape', 'honeydew', 'orange'
]
# #a가 들어있는 과일은 몇개인가요?
# 개수를 세는 변수만들기
# 반복문으로 모든 과일 이름 뽑기
# 조건문으로 과일이름에 a가 들어있다면?
# 개수 늘리기
To embed this project on your website, copy the following code and paste it into your website's HTML: