4

Python が PHP よりも Index Position を取得するのが遅いことに驚きました。Python のパフォーマンスを向上させる方法はありますか?

例えば:

PHP の場合: 18.169965982437

<?php
$time_start = microtime(true);
$needle = file_get_contents("needle.wav", false, null, 46);

foreach(range(0, 10000) as $num) {
   $haystack = file_get_contents("haystack.wav");
   $match = strpos($haystack,$needle);
}

$time_end = microtime(true);

$finishTime = $time_end - $time_start;
echo $finishTime;
?>

Python の場合: 23.6319999695

import time
import math
def microtime(get_as_float = False) :
    if get_as_float:
        return time.time()
    else:
        return '%f %d' % math.modf(time.time())

time_start = microtime(True)
needle = open("needle.wav","rb").read()

for x in range(0, 10000):
    haystack = open("haystack.wav","rb").read()
    match = haystack.index(needle[46:])

time_end = microtime(True)
finishTime = time_end - time_start
print finishTime
4

1 に答える 1

3

同等の python コードは次のとおりです。

needle = open("needle.wav", "rb").read()[46:]

for x in range(0, 10000):
    haystack = open("haystack.wav", "rb").read()
    match = haystack.index(needle)
于 2013-03-01T14:21:15.207 に答える