In Python How can I declare a Dynamic Array(在 Python 中,我如何声明一个动态数组)
问题描述
我想声明一个数组,并且应该删除 ListBox 中存在的所有项目,而不管 ListBox 中存在的组名称如何.任何人都可以帮助我用 Python 编码.我正在使用 WINXP 操作系统 &Python 2.6.
I want to declare an Array and all items present in the ListBox Should Be deleted irrespective of the Group name present in the ListBox. can any body help me coding in Python. I am using WINXP OS & Python 2.6.
推荐答案
在 Python 中,list
是一个动态数组.您可以像这样创建一个:
In Python, a list
is a dynamic array. You can create one like this:
lst = [] # Declares an empty list named lst
或者你可以用物品填充它:
Or you can fill it with items:
lst = [1,2,3]
您可以使用追加"添加项目:
You can add items using "append":
lst.append('a')
您可以使用 for
循环遍历列表的元素:
You can iterate over elements of the list using the for
loop:
for item in lst:
# Do something with item
或者,如果您想跟踪当前索引:
Or, if you'd like to keep track of the current index:
for idx, item in enumerate(lst):
# idx is the current idx, while item is lst[idx]
要删除元素,可以使用 del 命令或 remove 函数,如下所示:
To remove elements, you can use the del command or the remove function as in:
del lst[0] # Deletes the first item
lst.remove(x) # Removes the first occurence of x in the list
但请注意,不能同时遍历列表并对其进行修改;为此,您应该迭代列表的一部分(基本上是列表的副本).如:
Note, though, that one cannot iterate over the list and modify it at the same time; to do that, you should instead iterate over a slice of the list (which is basically a copy of the list). As in:
for item in lst[:]: # Notice the [:] which makes a slice
# Now we can modify lst, since we are iterating over a copy of it
这篇关于在 Python 中,我如何声明一个动态数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Python 中,我如何声明一个动态数组


基础教程推荐
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 筛选NumPy数组 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01