作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
Possible Duplicate:
What is the difference between list and list[:] in python?
我是 python 的新手,所以我遇到了无法找到以下问题的答案的情况。
这在 python 中意味着什么?
l[:] = process_list(l)
l
是类型 list
基本上我有一个全局声明的列表,我想根据 process_list 方法的响应修改它(用新值覆盖旧值)。当我这样尝试时:
l = process_list(l)
我明白了:Unresolved reference 'l'
您能解释一下有什么区别吗?我目前使用的第一种方法是否合适?
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: What is the difference between list and list[:] in pyt
我是一名优秀的程序员,十分优秀!