Python 中的二维数组?

发布于 2025-01-06 10:49:59 字数 46 浏览 0 评论 0原文

我如何对列表执行“for every”命令,所以我想循环遍历列表中的每个项目!

How would I do a "for every" command for a list, so I want to loop through it for every item in the list!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

森林很绿却致人迷途 2025-01-13 10:49:59

提出一个简短的问题,得到一个简短的答案:

a = []
for x in abc:
    a.append(x)

请注意,通常当人们说“数组”时,他们指的是 C 具有的平面数据结构:内存中的相邻单元块。特别是,您不能追加到数组。 Python 的 list 类型是数组和列表的混合体,您可以追加和弹出,也可以索引。 (我相信这是一个动态调整大小的数组。)

Ask a short question, get a short answer:

a = []
for x in abc:
    a.append(x)

Note that typically when people say "array" they mean the flat data-structure that C has: a block of adjacent cells in memory. In particular, you can't append to an array. Python's list type is a cross between an array and a list in that you can append and pop but also index. (I believe it's a dynamically resizing array.)

烟雨凡馨 2025-01-13 10:49:59

您修改后的问题的答案是:

for elt in mylist:
    do_something(elt)

这就是您所寻找的一切吗?

The answer to your revised question is:

for elt in mylist:
    do_something(elt)

Is this all you were looking for?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文