本文介绍了如何数组类型(列表和元组)和Python中有关循环?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是如何数组类型(列表和元组)和Python中有关循环?我感到有点困惑。我的英语是新的。

How are array types (lists and tuples) and for loops related in Python? I am a little bit confused. My English is new.

推荐答案

清单:


  • 他们的可变;也就是说,其内部的元件被允许改变。

  • 他们用括号标记 []

  • They are mutable; that is, the elements inside of it are permitted to change.
  • They use bracket notation [].

元组:


  • 他们的一成不变;也就是说,它是由不允许的元素来改变。

  • 他们用括号标记()

  • 执行他们的不变性快一点所致。

  • They are immutable; that is, the elements it is comprised of are not permitted to change.
  • They use parentheses notation ().
  • Perform a little faster due to their immutability.

这两个列表和元组:


  • 重复通过(为元素的X

  • 切片元素[1:3]

  • 索引元素[0]

  • Can be iterated over (for x in elements)
  • Can be sliced (elements[1:3])
  • Can be indexed (elements[0])

这篇关于如何数组类型(列表和元组)和Python中有关循环?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 23:06