這段代碼不能使用Lambda

來源:互聯網
上載者:User
代碼 1 import math
 2 
 3 def GetAllPrime(maxNum):
 4     if maxNum<10000:
 5         return [num for num in range(2,maxNum) if 0 not in [num%i for i in range(2,int(math.sqrt(num))+1)]]
 6     else:
 7         return [num for num in xrange(2,maxNum) if 0 not in [num%i for i in range(2,int(math.sqrt(num))+1)]]
 8 
 9 if __name__=='__main__':
10     def Print(s):
11         print s
12     [Print(i) for i in GetAllPrime(100)]  #Right
13     #[(lambda x:print x)(i) for i in GetAllPrime(10)]  #Error

原因:

lambda語句用來建立函數對象。本質上,lambda需要一個參數,後面僅跟單個運算式作為函數體,而運算式的值被這個建立的函數返回。注意,即便是print語句也不能用在lambda形式中,只能使用運算式。

 

聯繫我們

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