def prime_count(a, b): for i in range(a,b): if i % 2 != 0: return sum(i) else: return 0 "
I am a begi