Skip to content
Advertisement

Tag: string

Python string join performance

There are a lot of articles around the web concerning Python performance. The first thing you read is concatenating strings should not be done using ‘+’; avoid s1 + s2 + s3, and instead use str.join I tried the following: concatenating two strings as part of a directory path: three approaches: ‘+’ which I should not do str.join os.path.join Here

Advertisement