summaryrefslogtreecommitdiff
path: root/progs/a99.py
blob: 9a4585f9ca9b5290223eacf699b4f4f90d66fcb3 (plain)
1
2
3
4
5
6
def count_range_in_list(li, min, max):
	ctr = 0
	for x in li:
		if min <= x <= max:
			ctr += 1
	return ctr