I've been told os.path.join is horribly slow in python and I should use string concatenation ('%s/%s' % (x, y)) instead. Is there really that big a difference and if so how can I track it?
|
|
||||
So yes, it's nearly 50 times slower. 1 microsecond is still nothing though, so I really wouldn't factor the difference in. Use EDIT: Two people have now commented that the |
|||||||||||||||||
|
|
I don't know who told you not to use it, but they're wrong.
|
|||
|
|
|
Also be aware that periods in function calls are known to be slow. Compare:
So that's a slowdown of 40% just by having periods in your function invocation syntax. Curiously, these two are different speeds:
|
||||
|
|
|
It may be nearly 50 times faster, but unless you're doing it in a CPU bound tight inner loop, the speed difference isn't going to matter at all. The portability difference on the other hand will make the difference between whether or not your program can be easily ported to a non-Unix platform or not. So, please use |
|||||
|
|
You should use I don't get the point of comparing To answer the question in the title, "Is Python's os.path.join slow?" you have to at least compare it with a remotely similar function to find out what speed you can expect from a function like this. As you can see below, compared to a similar function, there is nothing slow about
|
||||
|
|
|
In this hot controversy, I dare to propose: (I know, I know , there is timeit, but I'm not so trained with timeit, and clock() seems to me to be sufficient for the case)
result 0.0284533369465 os.path.join('C:\WINNT\system32','Microsoft\Crypto','RSA\MachineKeys') 0.0277652606686 ospath.join('C:\WINNT\system32','Microsoft\Crypto','RSA\MachineKeys') 0.0272489939364 ospathjoin('C:\WINNT\system32','Microsoft\Crypto','RSA\MachineKeys') 0.00398598145854 'C:\WINNT\system32'+os.sep+'Microsoft\Crypto'+os.sep+'RSA\MachineKeys' 0.00375075603184 '%s\%s\%s' % ('C:\WINNT\system32','Microsoft\Crypto','RSA\MachineKeys') 0.00330824168994 'C:\WINNT\system32'+separ+'Microsoft\Crypto'+separ+'RSA\MachineKeys' 0.00292467338726 os.sep.join('C:\WINNT\system32','Microsoft\Crypto','RSA\MachineKeys') 0.00261401937956 separ.join('C:\WINNT\system32','Microsoft\Crypto','RSA\MachineKeys') True with separ = os.sep ospath = os.path ospathjoin = os.path.join |
||||
|
|
|
Everyone sholud know one inevident feature of os.path.join()
|
|||
|
|
timeit? – S.Lott Jan 12 '11 at 1:37x + '/' + y– John Machin Mar 26 '11 at 17:20