python中遍歷列表的兩種方式的異同

python中遍歷列表的方式有兩種,一種是for num in nums:,另一種是for i in range(len(nums)):。正常情況下使用沒什麼區別,但是如果在遍歷過程中涉及到移除數組元素的操作時,發現了區別。如下: nums = [0,1,2,2,3,0,4,2] print('這是直接遍歷列表,nums初始爲:', nums) for num in nums: print
相關文章
相關標籤/搜索