John Fouhyの回答によると、必要がある場合を除いて最適化しないでください。ここにいて、この質問をする場合は、正確に行う必要があります。私の場合、文字列変数からいくつかのURLを組み立てる必要がありました...高速です。(これまでのところ)文字列形式の方法を検討している人はいないようです。私はそれを試してみるつもりだと思ったのですが、主に穏やかな関心のために、文字列補間演算子をそこに入れて十分に測定したいと思いました。正直に言うと、これらのどちらも直接の「+」演算や '' .join()までスタックするとは思いませんでした。しかし、何だと思いますか?私のPython 2.7.5システムでは、文字列補間演算子がすべてをルール化し、string.format()が最悪のパフォーマーです。
# concatenate_test.py
from __future__ import print_function
import timeit
domain = 'some_really_long_example.com'
lang = 'en'
path = 'some/really/long/path/'
iterations = 1000000
def meth_plus():
'''Using + operator'''
return 'http://' + domain + '/' + lang + '/' + path
def meth_join():
'''Using ''.join()'''
return ''.join(['http://', domain, '/', lang, '/', path])
def meth_form():
'''Using string.format'''
return 'http://{0}/{1}/{2}'.format(domain, lang, path)
def meth_intp():
'''Using string interpolation'''
return 'http://%s/%s/%s' % (domain, lang, path)
plus = timeit.Timer(stmt="meth_plus()", setup="from __main__ import meth_plus")
join = timeit.Timer(stmt="meth_join()", setup="from __main__ import meth_join")
form = timeit.Timer(stmt="meth_form()", setup="from __main__ import meth_form")
intp = timeit.Timer(stmt="meth_intp()", setup="from __main__ import meth_intp")
plus.val = plus.timeit(iterations)
join.val = join.timeit(iterations)
form.val = form.timeit(iterations)
intp.val = intp.timeit(iterations)
min_val = min([plus.val, join.val, form.val, intp.val])
print('plus %0.12f (%0.2f%% as fast)' % (plus.val, (100 * min_val / plus.val), ))
print('join %0.12f (%0.2f%% as fast)' % (join.val, (100 * min_val / join.val), ))
print('form %0.12f (%0.2f%% as fast)' % (form.val, (100 * min_val / form.val), ))
print('intp %0.12f (%0.2f%% as fast)' % (intp.val, (100 * min_val / intp.val), ))
結果:
# python2.7 concatenate_test.py
plus 0.360787868500 (90.81% as fast)
join 0.452811956406 (72.36% as fast)
form 0.502608060837 (65.19% as fast)
intp 0.327636957169 (100.00% as fast)
短いドメインと短いパスを使用した場合でも、補間が優先されます。ただし、文字列が長いほど違いは顕著になります。
すばらしいテストスクリプトができたので、Python 2.6、3.3、3.4でもテストしました。結果は次のとおりです。Python 2.6では、plus演算子が最速です!Python 3では、joinが優先されます。注:これらのテストは私のシステムで非常に再現可能です。したがって、2.6では「plus」が常に高速になり、2.7では「intp」が常に高速になり、Python 3.xでは「join」が常に高速になります。
# python2.6 concatenate_test.py
plus 0.338213920593 (100.00% as fast)
join 0.427221059799 (79.17% as fast)
form 0.515371084213 (65.63% as fast)
intp 0.378169059753 (89.43% as fast)
# python3.3 concatenate_test.py
plus 0.409130576998 (89.20% as fast)
join 0.364938726001 (100.00% as fast)
form 0.621366866995 (58.73% as fast)
intp 0.419064424001 (87.08% as fast)
# python3.4 concatenate_test.py
plus 0.481188605998 (85.14% as fast)
join 0.409673971997 (100.00% as fast)
form 0.652010936996 (62.83% as fast)
intp 0.460400978001 (88.98% as fast)
# python3.5 concatenate_test.py
plus 0.417167026084 (93.47% as fast)
join 0.389929617057 (100.00% as fast)
form 0.595661019906 (65.46% as fast)
intp 0.404455224983 (96.41% as fast)
学んだ教訓:
- 時々、私の仮定は全く間違っています。
- システム環境に対してテストします。本番環境で実行されます。
- 文字列補間はまだ終わっていません!
tl; dr:
- 2.6を使用する場合は、+演算子を使用します。
- 2.7を使用している場合は、「%」演算子を使用します。
- 3.xを使用している場合は、 ''。join()を使用します。