python效率提公升 ctypes的使用

2021-09-17 08:47:19 字數 1357 閱讀 5560

python執行效率緩慢,一直是為眾人所詬病的。不過還好,python的ctypes庫可以呼叫載入c/c++的函式庫,這樣python中需要效率的部分就用c/c++寫,從而極大地提公升python的執行效率。

1.不用ctypes的示例:

from time import time

t=time()

s=0for i in xrange(1000):

for j in xrange(10000):

s += 1

print s

print time()-t

執行結果為:

4.33800005913

2. 接著將迴圈演算法那段用c++寫,然後通過python呼叫:

from time import time

from ctypes import *

t=time()

s=0lib = cdll('.\ctypes\debug\ctypes.dll')

s=lib.sum(1000,10000)

print s

print time()-t

執行結果為:

10000000

0.118000030518

3.ctypes兩種載入方式:

from ctypes import *

>>> libc = cdll . loadlibrary ( "libc.so.6" )

>>> libc.printf("%d",2)

>>> from ctypes import *

>>> libc = cdll ( "libc.so.6" )

>>> libc.printf("%d",2)

4.dll檔案

用vc++ 6.0,新建win32 dynamic-link libraby工程,命名為ctypes;再新建c/c++ header file與c++ source file,分別命名為ctypes.h、ctypes.cpp

ctypes.h

#ifndef _mydll_h_

#define _mydll_h_

extern "c" _declspec (dllexport) int sum(int a,int b); //新增.cpp中的定義的函式

#endif

ctypes.cpp

#include "ctypes.h" //.h 的名字

#include int sum(int a,int b)

{ int s,i,j;

s = 0;

for(i=0;i最後組建dll檔案 儲存

python效率提公升專題 迴圈

author zhangbo2012 outlook.com 本案例使用三種方法遍歷乙個列表,並生成新列表。方法 說明 a 使用for迴圈遍歷列表中的每乙個元素,並插入到新列表中 b 使用構造列表法建立新列表 c 使用map方法建立新列表 測試 如下 import time oldstr footb...

7個習慣提公升python效率

盡量使用區域性變數,避免使用全域性變數 1 當我們判斷物件的類別的時候,盡量使用isinstance 其次使用id 最不濟使用type type num type 0 type num is type 0 isinstance num,int 每次迴圈都會呼叫len a while i len a ...

sqlite提公升效率

前言 sqlite資料庫由於其簡單 靈活 輕量 開源,已經被越來越多的被應用到中小型應用中。甚至有人說,sqlite完全可以用來取代c語言中的檔案讀寫操作。因此我最近編寫有關遙感資料處理的程式的時候,也將sqlite引入進來,以提高資料的結構化程度,並且提高大資料的處理能力 sqlite最高支援2p...