I would like to create a list that is 100 elements long but each element is 30 long. The elements with a length of 30 would be made up of random numbers from [0,1] excluding 1.
I'm thinking I need a for loop or some sort of append.
My expected outcome would be something like:
[Random numbers between 0-1 excluding 1, Random numbers between 0-1 excluding 1, Same here,..., and the same idea here. ]