show/hide this revision's text 4 edited tags
show/hide this revision's text 3 ruby perl tags
show/hide this revision's text 2 Python script is now accurate, I had left some things commented

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 Vinko Vrsalovic how to time scripts I took converted some code for getting prime numbers into Python and PHP then ran each 3 times and recorded the numbers. All times are in seconds.

Python => 144.829, 144.771, 144.862 (Average 144.8206)
PHP    => 102.783, 100.707, 100.663 (Average 101.3843)

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.

Was all the stuff I heard about Python being faster wrong or have I done something appalling with my Python code?

Here is the Python code

#!/usr/bin/env python
primeNumbers = []
# output = []

for i in range(2xrange(2, 100000):
	divisible = False

	for number in primeNumbers:
		if i % number == 0:
			divisible = True


	if divisible == False:
		primeNumbers.append(i)
		print i

# output.append(str(i))

print ''.join(output)

And here is the PHP 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;
?>

All tests were run with the following command and under near identical conditions

$ time ./script.ext
show/hide this revision's text 1