난수생성으로 구 부피 구하는 코딩인데

def vol(n):

count=[]

for i in range(n):

x=random.uniform(0,1)

y=random.uniform(0,1)

z=random.uniform(0,1)

r2=x**2+y**2+z**2

if r2<=1:

count.append(1)

return sum(count)/n*8


여기서 왜 return에 n*8이 들어가는지 모르겠다.. 알려줘 횽들 ㅠㅠ