rossyeperez
Technical User
I have the following table
1 2 3 4 5 7
2 3 4 5 6 7
3 3 2 1 5 4
4 5 6 7 8 9
I would like to get the following result
start = 1 --> "top value in the first column"
stop = 4 --> "bottom value in the first column"
count = 6 --> " count number of column in the table"
and after get these values print the table below the values:
start = 1
stop = 4
count = 6
1 2 3 4 5 7
2 3 4 5 6 7
3 3 2 1 5 4
4 5 6 7 8 9
1 2 3 4 5 7
2 3 4 5 6 7
3 3 2 1 5 4
4 5 6 7 8 9
I would like to get the following result
start = 1 --> "top value in the first column"
stop = 4 --> "bottom value in the first column"
count = 6 --> " count number of column in the table"
and after get these values print the table below the values:
start = 1
stop = 4
count = 6
1 2 3 4 5 7
2 3 4 5 6 7
3 3 2 1 5 4
4 5 6 7 8 9