first of all I would like to inform you I don't have any knowledge about python. I tryed to figure the basics by searching trough some beginner tutorials but I can't even wrap my head around those.
As I have a very specific thing I'd like to generate I hope theres someone over here who could help me out.
I need all the possible combinations between the numbers 1,2,3,4,5,6,7,8 the first and the last number always have to be 1 and the numbers can't be used twice.
for example:
1 2 3 4 5 6 7 8 1 -
1 2 3 4 5 6 8 7 1 -
1 2 3 4 5 7 8 6 1 -
1 2 3 4 5 7 6 8 1 -
1 2 3 4 5 8 6 7 1 -
1 2 3 4 5 8 7 6 1 -
and so on :)