摘要: Python中的for循环 - qiy校招算法选择题 list = [] for i in range(3): def test(x): print(x+i) list.append(test) for num in list: num(2) 输出结果: 444 阅读全文
posted @ 2021-07-02 11:00 转角102 阅读(61) 评论(0) 推荐(0) 编辑