Python vs PHP, Python runs slower? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T21:18:54Zhttp://stackoverflow.com/feeds/question/62333http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower8Python vs PHP, Python runs slower?Teifion2008-09-15T12:27:20Z2009-11-11T11:54:26Z
<p>I've heard that Python is meant to be faster than PHP in terms of Runtime, I simply took this as a given and sat down today to make a blog post about it. After being told by <a href="http://stackoverflow.com/questions/62079/comparing-runtimes#62094">Vinko Vrsalovic</a> how to time scripts I took converted <a href="http://stackoverflow.com/questions/622/most-efficient-code-for-the-first-10000-prime-numbers#2753">some code for getting prime numbers</a> into Python and PHP then ran each 3 times and recorded the numbers. All times are in seconds.</p>
<pre><code>Python => 144.829, 144.771, 144.862 (Average 144.8206)
PHP => 102.783, 100.707, 100.663 (Average 101.3843)
</code></pre>
<p>I tried 3 different methods of storing the output in Python but they made a difference of approximately 2 seconds and when both scripts were set to output the data as soon as they got it rather than all at once the results were also only a few seconds off the above numbers.</p>
<p>Was all the stuff I heard about Python being faster wrong or have I done something appalling with my Python code?</p>
<p>Here is the Python code</p>
<pre><code>#!/usr/bin/env python
primeNumbers = []
output = []
for i in xrange(2, 100000):
divisible = False
for number in primeNumbers:
if i % number == 0:
divisible = True
if divisible == False:
primeNumbers.append(i)
output.append(str(i))
print ''.join(output)
</code></pre>
<p>And here is the PHP code</p>
<pre><code>#!/usr/bin/env php
<?php
$primeNumbers = array();
$output = '';
for ($i = 2; $i < 100000; $i++)
{
$divisible = false;
foreach ($primeNumbers as $number)
{
if ($i % $number == 0)
{
$divisible = true;
}
}
if ($divisible == false)
{
$primeNumbers[] = $i;
$output .= $i;
}
}
echo $output;
?>
</code></pre>
<p>All tests were run with the following command and under near identical conditions</p>
<pre><code>$ time ./script.ext
</code></pre>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/62387#623871Answer by 1729 for Python vs PHP, Python runs slower?17292008-09-15T12:35:56Z2008-09-15T12:35:56Z<pre><code>for i in range(2, 100000):
</code></pre>
<p>try replacing this with</p>
<pre><code>for i in xrange(2, 100000):
</code></pre>
<p>range creates a list, xrange returns a generator. this will use less memory and take less time.</p>
<p>In python 3, range will act like xrange.</p>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/62408#6240825Answer by Thomas Vander Stichele for Python vs PHP, Python runs slower?Thomas Vander Stichele2008-09-15T12:39:29Z2008-09-17T07:45:45Z<p>First of all, this is a very artificial test. The only building blocks you're measuring here are loops, integer division, array addition, and output.</p>
<p>The two scripts you pasted are not doing the same thing; the PHP one is outputting all numbers at the end (without any separators in between, even), while the python one is outputting one line for each number as it finds it.</p>
<p>Thus if these are the actual scripts, you're not comparing the same code flow.</p>
<p>I changed your scripts to be more similar. I also added a break after the divisor test, showing that a simple algorithmic change makes both scripts an order of magnitude faster (a factor of 10 on my machine).</p>
<p>The new PHP script:</p>
<pre><code>#!/usr/bin/env php
<?php
$primeNumbers = array();
$output = '';
$start = microtime(TRUE);
for ($i = 2; $i < 100000; $i++)
{
$divisible = false;
foreach ($primeNumbers as $number)
{
if ($i % $number == 0)
{
$divisible = true;
break;
}
}
if ($divisible == false)
{
$primeNumbers[] = $i;
$output .= $i;
}
}
echo count($primeNumbers), "\n";
echo "time: ", microtime(TRUE) - $start, "\n";
?>
</code></pre>
<p>The new python script:</p>
<pre><code>#!/usr/bin/env python
# -*- Mode: Python -*-
# vi:si:et:sw=4:sts=4:ts=4
import time
start = time.time()
primeNumbers = []
output = ""
for i in xrange(2, 100000):
divisible = False
for number in primeNumbers:
if i % number == 0:
divisible = True
break
if divisible == False:
primeNumbers.append(i)
output += str(i)
print len(primeNumbers)
print 'time: %f' % (time.time() - start)
</code></pre>
<p>Here are the runtimes:</p>
<ul>
<li>Python, 100000 items, little output, timing inside script: 15.324324, 15.923104, 15.096976</li>
<li>PHP, 100000 items, little output, timing inside script: 9.3562700748444, 9.6537330150604, 11.526440143585</li>
<li>Python, same but using xrange: 14.315210, 17.380582, 14.081702 (interestingly enough, seems faster but a wider variation)</li>
</ul>
<p>Your basic statement, for this contrived case, still seems true - the PHP version is faster. But unless you are writing a prime number generating script, this test will not say much about speed of PHP versus Python.</p>
<p>As an aside - this question shows, more than anything, that it's not the runtime that matters - it's the algorithm. There are much faster algorithms to find all prime numbers up to a given number :)</p>
<p>Here's a faster one in Python, implementing a <a href="http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes" rel="nofollow">Sieve of Eratosthenes</a></p>
<pre><code>#!/usr/bin/env python
# -*- Mode: Python -*-
# vi:si:et:sw=4:sts=4:ts=4
import time
start = time.time()
TOP = 100000
primes = {}
output = ""
for i in range(2, TOP):
primes[i] = True
for i in range(2, TOP):
if primes[i]:
for j in range(i * 2, TOP, i):
primes[j] = False
for i in range(2, TOP):
if primes[i]:
output += str(i)
print 'time: %f' % (time.time() - start)
</code></pre>
<p>Runtime for this script: 0.264818</p>
<p>I'd say that's a 60 times improvement on the 10 times improvement I got after adding the break over the original version, but with so small a runtime the margin for error is a bit too big (though it's likely it's actually in favour of the slower tests).</p>
<p>Calculating with an upper limit of 100 times more, this script runs in 30 seconds.</p>
<p>One of the reasons why this script is faster is that it runs in O(n) time, while the original version (with a nested loop) runs in O(n²) time.</p>
<p>The sieve version consumes more memory. For the PHP version to work, I actually had to create a custom .ini to make php use more than 32 MB. Not pasting my PHP version since I'm not really that good a PHP coder and I wouldn't want to skew results with a slow PHP version written by me.</p>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/62454#624541Answer by Nouveau for Python vs PHP, Python runs slower?Nouveau2008-09-15T12:45:23Z2008-09-15T12:45:23Z<p>Put a break statement after the "divisible = true" bits, you'll be amazed at the time saved.</p>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/62489#6248913Answer by Trausti Thor Johannsson for Python vs PHP, Python runs slower?Trausti Thor Johannsson2008-09-15T12:48:12Z2008-12-06T20:08:46Z<p>I actually did a benchmark with a few simple items, mostly to do with split strings and array manipulation. I did it with python, php, ruby and perl.</p>
<p>What I wanted to accomplish was to see how much faster php was than Ruby, and if php was faster than perl, why I did python was just because I could :)</p>
<p>What I found out is that python actually was the fastest by a large factor, and ruby was more than twice as fast as php, and php totally failed on 1.000.000 lines while everything else ran just fine.</p>
<p>Here is the result</p>
<pre><code>$ time php readArray.php
^C
real 5m1.741s
user 5m1.086s
sys 0m0.640s
time ruby readArray.rb
$ time ruby readArray.rb
Stærðin á fylkinu er : 1000000
real 0m0.541s
user 0m0.487s
sys 0m0.052s
time perl readArray.pl
$ time perl readArray.pl
Size of array is 1000000
real 0m0.726s
user 0m0.565s
sys 0m0.161s
$ time python readArray.py
my arr is :
1000001
real 0m0.179s
user 0m0.126s
sys 0m0.053s
</code></pre>
<p>Here is the code for</p>
<p>php</p>
<pre><code><?php
$file = file_get_contents ("testfile");
$fylki = split("\n", $file);
print "Count is :".count($fylki)."\n";
?>
</code></pre>
<p>and ruby</p>
<pre><code>a = File.read("testfile")
myarray = a.split("\n")
puts "Arraysize is : " << myarray.size.to_s
</code></pre>
<p>and python</p>
<pre><code>a = open("testfile").read() # or just open("testfile").readlines() # it keeps '\n'
myarr = a.split("\n")
print "my arr is :", len(myarr)
</code></pre>
<p>So my conclusion was that php was not as fast and powerful as the rumor is, and ruby is not slow at all, which was exactly what I as a php guy did not want to see.</p>
<p>But being a ruby fan this convinced me to look better at ruby. I have no idea why I am not turning to python, as it was the fastest by a large margin and being quite simple, I have no idea.</p>
<p>p.s. Just added the python time</p>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/62526#625264Answer by ΤΖΩΤΖΙΟΥ for Python vs PHP, Python runs slower?ΤΖΩΤΖΙΟΥ2008-09-15T12:51:58Z2008-09-15T12:51:58Z<p>In summary, do the following changes to your Python code (do not output on every iteration, and generally, ignore output time), then the relevant changes to your PHP code, and then try again. Also, as suggested already, try real-life (as defined by your project needs) benchmarks.</p>
<pre><code>for i in xrange(2, 100000):
for number in primeNumbers:
if i % number == 0:
break
else:
primeNumbers.append(i)
</code></pre>
<p>Note: xrange, changes to the for loop, removal of output</p>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/62531#625311Answer by Anurag Uniyal for Python vs PHP, Python runs slower?Anurag Uniyal2008-09-15T12:52:34Z2008-09-15T12:52:34Z<p>change range to xrange
, more importantly do not do 'print i' in loop</p>
<p>why not print out prime number list(primenumbers) at last
also i think you should exclude output/printing part from timing.</p>
<p>You can also improve both scripts by breaking out of inner for loop when you find a divisor.
e.g.</p>
<pre><code> for number in primeNumbers:
if i % number == 0:
divisible = True
break
</code></pre>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/62815#628154Answer by Toni Ruža for Python vs PHP, Python runs slower?Toni Ruža2008-09-15T13:23:09Z2008-09-15T14:02:32Z<p><a href="http://www.python.org/doc/essays/list2str.html" rel="nofollow">Here</a> is an excellent introductory article to optimization in python.</p>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/62838#628382Answer by dbr for Python vs PHP, Python runs slower?dbr2008-09-15T13:25:28Z2008-09-15T15:06:59Z<p>The Python version was creating a list, adding every prime to it, then having to transform that list into a string.</p>
<p>You can make this a bit cleaner by doing..</p>
<pre><code>primes = []
for i in xrange(2, 100000):
divisible = False
for number in primes:
if i % number == 0:
divisible = True
break
if not divisible:
primes.append(i)
print "".join([str(x) for x in primes])
</code></pre>
<p>I added a break statement to both scripts, which stops it needlessly testing every possible number - as soon as we know it divides by something, there's no point testing it any further.</p>
<p>You can probably improve either scripts performance - really this test doesn't really prove anything. At basic stuff like looping, appending to strings etc, most languages perform pretty much the same.</p>
<p>Regardless of benchmark-speed, I would argue that Python is always faster, because I can <em>write code in it faster</em>, not because of the interpreter speed.. but that's a different matter entirely!</p>
<p>As an aside, if you are doing stuff like this in Python (where speed matters), I recommend a combination of three things:</p>
<ul>
<li>Look into systems like Psyco, or Numpy.</li>
<li>Learn to write modules for Python in C. That way you get the benefits of rapid development - write everything in Python first, then when you see performance issues, you can get benefits of compiled language, without reinventing the entire wheel.</li>
<li>Learn/find/research and implement better algorithms, which will help <strong>far</strong> more "a faster language". In this case, you can find primes <em>far</em> faster than brute-forcing through several loops.</li>
</ul>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/63402#634022Answer by Sean O Donnell for Python vs PHP, Python runs slower?Sean O Donnell2008-09-15T14:27:58Z2008-09-15T14:27:58Z<p>In general PHP tends to be a little faster than Python, mainly due to most of phps functions being implemented in C, whereas much of Python is implemented in Python. People tend to talk about Python being faster in terms of development time rather than performance. If you are having performance problems, and you know where your code is slow (profile if you dont), try finding a C implementation of the library you are using (for example python-cjson instead of simplejson for json encoding/decoding), or experiment with python optimization tools like psyco.</p>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/63533#635331Answer by pobk for Python vs PHP, Python runs slower?pobk2008-09-15T14:43:48Z2008-09-15T14:43:48Z<p>I would also note that Python byte-compiles the input.</p>
<p>If your code did alot more interesting things than loops and simple maths and employed several modules etc, you would notice a massive increase in speed over the php instance. Your first run of the script would be somewhat slow initially, but each subsequent execution would use the byte compiled modes. (the generated *.pyc files).</p>
<p>You can further optimise the byte compiled output from Python by using the -OO switch.</p>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/63644#636441Answer by jsumners for Python vs PHP, Python runs slower?jsumners2008-09-15T14:56:27Z2008-09-15T14:56:27Z<p>A prime number is only divisible by 1 and itself. So</p>
<pre><code>if ( (2 % $number == 0) || ($i % $number == 0) )
</code></pre>
<p>for any</p>
<pre><code>$i <= $number
</code></pre>
<p>then the number is not a prime number. Therefore, as mentioned in other answers, issuing a break statement when</p>
<pre><code>$i % $number == 0
</code></pre>
<p>is true, you save a lot of time.</p>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/63697#6369712Answer by Alec Thomas for Python vs PHP, Python runs slower?Alec Thomas2008-09-15T15:02:31Z2008-09-15T15:02:31Z<p>There are lies, damn lies, and benchmarks. That said, the <a href="http://shootout.alioth.debian.org/gp4/" rel="nofollow">Computer Language Benchmarks Game</a> offers a much broader <a href="http://shootout.alioth.debian.org/gp4/benchmark.php?test=all&lang=python&lang2=php" rel="nofollow">response to your question</a>.</p>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/63734#637342Answer by Simon Willison for Python vs PHP, Python runs slower?Simon Willison2008-09-15T15:06:28Z2008-09-15T15:06:28Z<p>The Python interpreter has quite a significant startup cost (more so than PHP) which you are including in your benchmark. Try timing things from within your script instead:</p>
<pre><code>import time
start = time.time()
# compute numbers here
print "Took", (time.time() - start)
<?php
$start = microtime(true);
/* Compute numbers here */
print "Took " . microtime(true) - $start;
?>
</code></pre>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/63978#639781Answer by A Nony Mouse for Python vs PHP, Python runs slower?A Nony Mouse2008-09-15T15:31:59Z2008-09-15T15:31:59Z<ol>
<li>You are including interpreter startup times with your scripts. That is not fair in most cases. <em>PHP for example is always started up in the webpage serving context (where it is most used)</em></li>
<li>Also you have a different IO profile for both the scripts -- the big bottleneck in your python code is multiple IO as opposed to a single IO in the PHP Code. You need to fix that.</li>
</ol>
<p>Please retry the benchmark without the interpreter / IO times on your own code and look at the results.</p>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/86353#863532Answer by yoihj for Python vs PHP, Python runs slower?yoihj2008-09-17T18:53:10Z2008-09-17T18:53:10Z<p>PHP: 83.43 sec
Python: 6.43 sec</p>
<pre><code><?php
set_time_limit(1000);
$tt=mfl();
$primeNumbers = array();
$output = '';
for ($i = 2; $i < 100000; $i++)
{
$divisible = false;
foreach ($primeNumbers as $number)
{
if ($i % $number == 0)
{
$divisible = true;
}
}
if ($divisible == false)
{
$primeNumbers[] = $i;
# $output .= $i;
}
}
#echo $output;
print mfl()-$tt;
function mfl() {
list($usec, $sec) = explode(" ", microtime());
return ((float)$usec + (float)$sec);
}
</code></pre>
<p><hr /></p>
<pre><code>import time
tt=time.time()
def a():
primeNumbers = []
output = []
for i in xrange(2, 100000):
divisible = False
for number in primeNumbers:
if i % number == 0:
divisible = True
if divisible == False:
primeNumbers.append(i)
#output.append(str(i))
return primeNumbers
import psyco
psyco.full()
txt=''.join([str(i) for i in a()])
#print txt
print time.time()-tt
</code></pre>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/256836#256836-3Answer by Ali A for Python vs PHP, Python runs slower?Ali A2008-11-02T12:20:15Z2008-11-02T12:20:15Z<p>Those 8-space indents really slow python down.</p>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/257099#2570991Answer by J.F. Sebastian for Python vs PHP, Python runs slower?J.F. Sebastian2008-11-02T17:39:10Z2008-11-02T20:08:45Z<ol>
<li><p>Your unmodified scripts take <em>200</em> seconds on my machine (both php and python).</p>
<pre><code>$ php --version
PHP 5.2.6 (cli) (built: May 2 2008 18:02:07)
$ python --version
Python 2.5.2
</code></pre></li>
<li><p>Modified (more similar in functionality and faster (to avoid waiting)) versions take 20 seconds (php being slightly faster). Python script interpreted by jython takes 50 seconds (Jython 2.2.1 on java1.6.0_10-beta). Both versions php and python append integers and strings. There is no difference between <code>range</code> and <code>xrange</code> in this case.</p>
<pre><code>#!/usr/bin/env python
primeNumbers = [2]
output = '2'
for number in range(3, 100000, 2):
for divisor in primeNumbers:
if number % divisor == 0:
break
else:
primeNumbers.append(number)
output += str(number)
#
print output
#!/usr/bin/env php
<?php
$primeNumbers = array(2);
$output = '2';
for ($i = 3; $i < 100000; $i += 2) {
$prime = true;
foreach ($primeNumbers as $number) {
if ($i % $number == 0) {
$prime = false;
break;
}
}
if ($prime) {
$primeNumbers[] = $i;
$output .= $i;
}
}
echo $output;
?>
</code></pre></li>
<li><p>The third version is a quick-and-dirty (memory-hungry, unoptimized) python script which I would actually use to print concatenated primes less then 100000. It takes <em>0.7</em> seconds (0.13 seconds without printing).</p>
<pre><code>#!/usr/bin/env python
def iprimesupto(limit):
isprime = [False]*2 + [True]*(limit - 2)
for n in range(limit):
if isprime[n]:
yield n
for i in range(n*n, limit, n):
isprime[i] = False
#
print ''.join(str(p) for p in iprimesupto(100000))
</code></pre></li>
</ol>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/346683#3466834Answer by Anh-Kiet Ngo for Python vs PHP, Python runs slower?Anh-Kiet Ngo2008-12-06T19:56:37Z2008-12-06T19:56:37Z<p>One of my friends showed this page to me and I was rather intrigued. I went to do some research and found out that it was the difference in the loops that caused the substantial difference in time. I was able to modify the two scripts and they now both run in somewhat the same amount of time. I already spent my time writing it up at my blog <a href="http://www.akngo.com/webdev/php-faster-than-python/" rel="nofollow">http://www.akngo.com/webdev/php-faster-than-python/</a>.</p>
<p>In short, the difference was in the for and the foreach loop.</p>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/346881#3468813Answer by J.F. Sebastian for Python vs PHP, Python runs slower?J.F. Sebastian2008-12-06T22:11:13Z2008-12-06T22:33:51Z<p>I've repeated @Trausti Thor Johannsson's <a href="http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower#62489">test</a>. </p>
<pre>
| Language | Time |
| | in seconds |
|----------+------------|
| perl | 1.9 |
| python | 4.2 |
| ruby | 5.0 |
| php | > 600 |
</pre>
<p>Input file was generated by:</p>
<pre><code>$ perl -E"say for(1..1000_000)" >1M.input
</code></pre>
<p>All scripts resemble a php version i.e., the code is not idiomatic.</p>
<pre><code>$ cat read_array.*
#!/usr/bin/env php
<?php
$text = file_get_contents ("1M.input"); #TODO: argv support
$lines = split("\n", $text);
print "wc -l: ".count($lines)."\n";
?>
#!/usr/bin/perl -w
$filename = @ARGV == 1 ? $ARGV[0] : '1M.input';
{
open $fh, "<", $filename or die "can't open '$filename' $!";
undef $/;
$text = <$fh>; # php-like version
@lines = split "\n", $text;
print "wc -l: ". @lines ."\n";
}
#!/usr/bin/env python
import sys
filename = sys.argv[1] if len(sys.argv) == 2 else '1M.input'
text = open(filename).read() # or just readlines() (it keeps '\n')
lines = text.split('\n')
print("wc -l: ", len(lines))
#!/usr/bin/env ruby
filename = ARGV.size == 1 ? ARGV[0] : '1M.input'
text = File.read filename
lines = text.split "\n"
puts "wc -l: " << lines.size.to_s
</code></pre>
<p>This test confirms yet another time: <em>all benchmarks are evil</em> (PHP is at least 100 times slower than python in this test, but I wouldn't go and write a blog post about it due to there are other tests that <strong>will</strong> show different picture)</p>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/346904#3469043Answer by Kknd for Python vs PHP, Python runs slower?Kknd2008-12-06T22:27:29Z2008-12-06T22:27:29Z<p><a href="http://shootout.alioth.debian.org/u32/benchmark.php?test=all&lang=all" rel="nofollow">http://shootout.alioth.debian.org/u32/benchmark.php?test=all&lang=all</a></p>
<p>have some good benchmarks!</p>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/347346#3473463Answer by muhuk for Python vs PHP, Python runs slower?muhuk2008-12-07T07:13:02Z2008-12-07T07:13:02Z<h3>Rant Part</h3>
<p>Let us assume PHP is faster than Python.</p>
<p>Performance is a <em>cost</em>. That means, say for web applications, you will need to throw in more servers (therefore mone money).</p>
<p>Development is a <em>cost</em> as well. It takes time. And the F(c)->t function, where c is complexity and t is time needed, is different for PHP and Python. (Time requirement doesn't increase linearly with complexity)</p>
<p>Developers are <em>resources</em>, so they <em>cost</em> as well. Would you rather code PHP instead of Python? Would your expectations (of performance) be the same for two types of programmers? (I mean, programmers specialized in these languages)</p>
<h3>Answer Part</h3>
<p>To conclude Python is slower, we would need better benchmarks. Brute forcing prime numbers is not a good benchmark IMHO. Benchmarking with any other <code>unit</code> of language is not good as well.</p>
<p>These languages have a big difference in expressiveness. IMHO a performance test for some (sanely) complex task would be more suitable. It would also show that expressiveness is inversely reverse proportional to code length.</p>
<p>NOTE: Something tells me this will be downvoted to oblivion. I wouldn't want that, but I would agree this answer is <em>not helpful</em> in proportion to the question.</p>
<p>EDIT: Fixed formatting. 4th level heading don't show up when submitted. Shouldn't the <strong>preview</strong> show us how it will look when posted?</p>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/347354#3473541Answer by Darius Bacon for Python vs PHP, Python runs slower?Darius Bacon2008-12-07T07:29:27Z2008-12-07T07:29:27Z<p>This doesn't significantly affect the speed, but your code could be a <em>lot</em> simpler:</p>
<pre><code>primes = []
for i in xrange(2, 100000):
if all(i % number != 0 for number in primes):
primes.append(i)
print ''.join(map(str, primes))
</code></pre>
<p>This is the same algorithm as you'd have with the proper <code>break</code> after <code>divisible = True</code>.</p>
http://stackoverflow.com/questions/62333/python-vs-php-python-runs-slower/551893#5518931Answer by Dhawal for Python vs PHP, Python runs slower?Dhawal2009-02-16T00:11:59Z2009-02-16T00:11:59Z<p>Python is more readable in my view than PHP. :)
Talking about speed, I can write much faster and way better in python then in PHP.</p>