I have written a code that returns the first 100 Fibonacci-numbers. Now, I want to make a list that contains all of those numbers, in square brackets and commas between all numbers, like a list. Obviously i can't just copy the returned numbers and paste them in a list with square brackets, since that won't give me any commas between the numbers.
What can I do?