It may be a basic question, but there are things I do not understand. I would like to create a list from 0 to 99, but it will not be output as I expected.
list = range(5)
print(list)
# >>> range(0, 5)
I want to get the following list.
print(list)
# >>>[0,1,2,3,4,,...,98,99]