Skip to content

Instantly share code, notes, and snippets.

View levic's full-sized avatar

Levi Cameron levic

View GitHub Profile
@levic
levic / results-python3.11.txt
Last active March 22, 2023 04:03 — forked from djfroofy/performance_results.txt
Lists vs. StringIO vs. Regular String Concat for building strings in Python
=================================
Python 3.11
=================================
Concatenating 5 strings...
build_ul_list : 1.0
build_ul_stringio : 1.629
build_ul_concat : 1.013
Concatenating 32 strings...
build_ul_list : 1.0
build_ul_stringio : 1.356