def randn(): x = -6 for i in range(0,12): x += random.random() return(x) for i in range(0,5): y = randn() print(i, y)