summaryrefslogtreecommitdiff
path: root/progs/a805.py
blob: aeb949ee01254e75078e09fcc730260480eca05a (plain)
1
2
3
4
5
6
7
8
9
10
from array import array
def positive_count(nums):
    n = len(nums)
    n1 = 0
    for x in nums:
        if x > 0:
            n1 += 1
        else:
          None
    return round(n1/n,2)