Skip to content

Files

Latest commit

 

History

History
7 lines (4 loc) · 185 Bytes

consider-using-join.md

File metadata and controls

7 lines (4 loc) · 185 Bytes

Pattern: Missing use of str.join(sequence)

Issue: -

Description

Using str.join(sequence) is faster, uses less memory and increases readability compared to for-loop iteration.