Python 練習(xí)實(shí)例49
python 練習(xí)實(shí)例49
題目:使用lambda來(lái)創(chuàng)建匿名函數(shù)。
程序分析:無(wú)
實(shí)例:
#!/usr/bin/python # -*- coding: utf-8 -*- maximum = lambda x,y : (x > y) * x + (x < y) * y minimum = lambda x,y : (x > y) * y + (x < y) * x if __name__ == '__main__': a = 10 b = 20 print ('the largar one is %d' % maximum(a,b)) print ('the lower one is %d' % minimum(a,b))
以上實(shí)例輸出結(jié)果為:
the largar one is 20 the lower one is 10