To copy a list without its first element, simply use slicing list[1:] . By setting the start index to 1 all elements with index larger or equal to 1 are copied ...
確定! 回上一頁