摘要: for j in i:TypeError: 'int' object is not iterable l = []def g(_l: list, i): for j in i: _l.append(j)g(l, 1)g(l, *[2, 3]) 修复: 6. Expressions — Python 阅读全文
posted @ 2024-06-17 12:42 papering 阅读(5) 评论(0) 推荐(0) 编辑