- Python
各位大神,请帮我找找我哪里错了
- 2023-1-21 16:51:41 @
log=print def practice7(): l = [1, 201, 420, 521, 77, 87] new_l = [] for i in range(len(l)): n = l[i] if n % 2 == 0: new_l.append(n) log(l) practice7()
1 条评论
-
...... (丁泓森) LV 10 @ 2023-1-24 10:29:41
说题目,哪里有问题,不然我也不知道怎么帮你
- 1