To remove from list in Python, use the list.pop() method. For example, [10, 20, 30].pop(0) removes the first element. The result is [20, 30]
確定! 回上一頁