py列表解析例子

來源:互聯網
上載者:User

# -*- coding: utf-8 -*-
"""
添加中文注釋 要加上開頭的# -*- coding: utf-8 -*-
或者 # -*- coding: cp936 -*-   不然報錯
"""
import glob
import os

"""
列表解析式的使用 
可以在列表解析中使用任何的Python運算式, 包括os 模組中用於操作檔案和目錄的函數
"""
test = [1, 2, 3, 4]
print [i * 2 for i in test]

print [os.path.realpath(f) for f in glob.glob('*.py')]
print
"""你可以在列表解析的最後加入if子句來過濾列表。對於列表中每一個元素if
關鍵字後面的運算式都會被計算。如果運算式的計算結果為True,
那麼這個元素將會被包含在輸出中。這個列表解析在目前的目錄尋找所有.py 檔案,
而 if 運算式通過測試檔案大小是否大於6000位元組對列表進行過濾
"""
print [(os.stat(f).st_size, os.path.realpath(f)) for f in glob.glob('*.py')if os.stat(f).st_size > 6000]

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.