07. 广义均匀分布

广义均匀分布

Question:

Start Quiz:

#  Modify your code to create probability vectors, p, of arbitrary 
#  size, n. Use n=5 to verify that your new solution matches 
#  the previous one.

p=[]
n=5

print p
Solution: