I have a list:
lis = [1, 1, 2, 4, 5, 5, 13, 8, 34, 55, 89, 88, 102]
For this I have the following basics question?
How can I give an expression that sums the last i elements (1<i<5) of the list in the variable lis.
Hot can i give an expression that gives a list with the 3rd - 5th element of this list.
How can I enter an expression that gives a list with the 4th last to 2nd last element: of this list.
It may be that the list can become different Lang.