I have a list that looks like this:
test = [1,2,3,4,65,66,67,68,69,72,85,86,87,88,89,91]
I want to return multiple lists with sequential numbers:
[1,2,3,4]
[65,66,67,68,69]
[72]
[85,86,87,88,89]
[91]
Is there an easy way to do this in Python?