Python - Counting1
================
count = 0
fruit=’banana’
for char in fruit:
if char == ‘a’:
count = count + 1
print(count)