python高階技能
1、匿名函式:lambda¶
In [1]:
f=lambda x,y,z:x+y+z
f(2,3,4)
Out[1]:
9
In [2]:
L=[lambda x:x**2,
lambda x: x**3,
lambda x:x**4]
for f in L:
print(f(2))
4
8
16
In [3]:
import sys
showall=lambda x:[sys.stdout.write(line) for line in x] #在lambda中進行print
t=showall(('bright\n', 'side\n', 'of\n', 'life\n'))
bright
side
of
life
2、在序列重對映函式:map¶
In [4]:
counters=[1,2,3,4]
def inc(x):return x+10
map(inc,counters)
#說明:map函式對一個序列物件中的每一個元素應用被傳入的函式,並且返回一個包含了所有函式呼叫結果的一個列表
Out[4]:
[11, 12, 13, 14]
In [5]:
pow(2,3)
Out[5]:
8
In [6]:
map(pow,[1,2,3],[2,3,4])
Out[6]:
[1, 8, 81]
3、函數語言程式設計工具:filter和reduce¶
In [7]:
range(-5,5)
Out[7]:
[-5, -4, -3, -2, -1, 0, 1, 2, 3, 4]
In [8]:
filter((lambda x:x>0), range(-5,5))
Out[8]:
[1, 2, 3, 4]
In [9]:
reduce((lambda x,y:x+y),[1,2,3,4])
Out[9]:
10
In [10]:
reduce((lambda x,y:x*y),[1,2,3,4])
Out[10]:
24
In [11]:
reduce((lambda x,y:x*y),[1,2,3,4])
Out[11]:
24
In [ ]:
4、python3的reduce及如何檢視python版本資訊¶
In [1]:
import platform
In [2]:
platform.python_version()
Out[2]:
'3.5.2'
In [3]:
from functools import reduce
In [4]:
reduce((lambda x,y:x+y),[1,2,3,4])
Out[4]:
10
In [5]:
import sys
print(sys.version)
3.5.2 |Anaconda 4.2.0 (64-bit)| (default, Jul 5 2016, 11:41:13) [MSC v.1900 64 bit (AMD64)]
In [1]:
f=lambda x,y,z:x+y+z
f(2,3,4)
Out[1]:
9
In [2]:
L=[lambda x:x**2,
lambda x: x**3,
lambda x:x**4]
for f in L:
print(f(2))
4
8
16
In [3]:
import sys
showall=lambda x:[sys.stdout.write(line) for line in x] #在lambda中進行print
t=showall(('bright\n', 'side\n', 'of\n', 'life\n'))
bright
side
of
life
2、在序列重對映函式:map¶
In [4]:
counters=[1,2,3,4]
def inc(x):return x+10
map(inc,counters)
#說明:map函式對一個序列物件中的每一個元素應用被傳入的函式,並且返回一個包含了所有函式呼叫結果的一個列表
Out[4]:
[11, 12, 13, 14]
In [5]:
pow(2,3)
Out[5]:
8
In [6]:
map(pow,[1,2,3],[2,3,4])
Out[6]:
[1, 8, 81]
3、函數語言程式設計工具:filter和reduce¶
In [7]:
range(-5,5)
Out[7]:
[-5, -4, -3, -2, -1, 0, 1, 2, 3, 4]
In [8]:
filter((lambda x:x>0), range(-5,5))
Out[8]:
[1, 2, 3, 4]
In [9]:
reduce((lambda x,y:x+y),[1,2,3,4])
Out[9]:
10
In [10]:
reduce((lambda x,y:x*y),[1,2,3,4])
Out[10]:
24
In [11]:
reduce((lambda x,y:x*y),[1,2,3,4])
Out[11]:
24
In [ ]:
4、python3的reduce及如何檢視python版本資訊¶
In [1]:
import platform
In [2]:
platform.python_version()
Out[2]:
'3.5.2'
In [3]:
from functools import reduce
In [4]:
reduce((lambda x,y:x+y),[1,2,3,4])
Out[4]:
10
In [5]:
import sys
print(sys.version)
3.5.2 |Anaconda 4.2.0 (64-bit)| (default, Jul 5 2016, 11:41:13) [MSC v.1900 64 bit (AMD64)]
相關文章
- 值得了解的webpack高階技能Web
- Python 高階特性Python
- python高階函式Python函式
- Python高階--閉包Python
- 提升開發技能:10個高階的JavaScript技巧JavaScript
- 提升編碼技能的 幾 種高階技術
- 高階軟體測試工程師,需要掌握哪些技能工程師
- Python模組高階技巧Python
- python- 函式高階Python函式
- Python字典的高階用法Python
- 【模組三】Python高階Python
- Python 函式進階-高階函式Python函式
- Python高階 -- 08 MySQL與Python互動PythonMySql
- Python 高階程式設計:深入探索高階程式碼實踐Python程式設計
- Python裝飾器高階用法Python
- python str.format高階用法PythonORM
- 02 . SaltStack高階用法(Python API)PythonAPI
- Python——迭代器的高階用法Python
- python高階內建函式Python函式
- python是高階語言嗎Python
- 高階PHP工程師應該具備的一些技能PHP工程師
- Python進階:切片的誤區與高階用法Python
- Python中函式的高階使用Python函式
- Python高階 -- 07 MySQL資料庫PythonMySql資料庫
- python高階-閉包-裝飾器Python
- python高階語法:繼承性Python繼承
- Python 高階特性(4)- 生成器Python
- 【Python學習教程】Python的5種高階用法!Python
- Python技能樹Python
- Python高階知識點學習(五)Python
- 收藏,Python 開發中有哪些高階技巧?Python
- Python高階 -- 11 閉包、裝飾器Python
- Python中的高階函式簡介Python函式
- Python函式裝飾器高階用法Python函式
- reloadium:提供Python高階熱過載功能Python
- Python高階 -- 09 MySQL高階之事務、檢視、索引、賬戶管理、主從配置PythonMySql索引
- python列表(list)的使用技巧及高階操作Python
- Python高階 -- 10 WSGI、mini_frame(web框架)PythonWeb框架
- 分享Python的5種高階特徵應用Python特徵