【电子学会】2021年03月Python三级 -- 编程题38

Python三级题目解析

1、题目

有一组数据 [0, 20, 0, 4, 31] 存放在nums中,请将列表中的所有零移动到列表尾。

nums = [0, 20, 0, 4, 31]
initLen = __①___
i = 0
j = 0
while i < initLen:
 

你可能感兴趣的:(算法,数据结构,python,等级考试,青少年编程)