python筆記二:常用資料類型操作

來源:互聯網
上載者:User

標籤:

1.切片:常用於取list或tuple的部分元素的操作

  1)l=[1,2,3,4,5,6]

  l[:3]表示取前3個值,l[1:5]表示1到5個值, L[-3:]從列表最後往前數即最後3個數....

  2)t=(1,2,3,4,5,6)

  t(:3),t(:),t(1:5)...

2.迭代

  1)for ch in ‘ABC‘

  2)for i, value in enumerate([‘A‘, ‘B‘, ‘C‘])

  3)for x, y in [(1, 1), (2, 4), (3, 9)]

3.列表產生式

  1)建立list:range(1, 10)產生1到9的列表

  2)[x * x for x in range(1, 11)],輸入x*x

  3)[m + n for m in ‘ABC‘ for n in ‘XYZ‘]

4.產生器

  1) m = (x * x for x in range(10))

  m.next()...

  2)將print換成 yield即變換成產生器(斐波那契數列)

  def fib(max):

    n, a, b = 0, 0, 1

    while n < max:

      print b  

      a, b = b, a + b

      n = n + 1

  即:

  def fib(max):

    n, a, b = 0, 0, 1

    while n < max:

      yield b

      a, b = b, a + b

      n = n + 1

  

python筆記二:常用資料類型操作

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.