Sponsored Reserved space — layout preview until AdSense is connected

Reference library

Python code samples

Copy-ready Python snippets by topic and difficulty — short, focused, and runnable in the browser editor.

1 match
Sponsored Reserved space — layout preview until AdSense is connected
Strings & text easy

Split and join words

Turn a sentence into tokens, then rebuild it with a custom separator.

strings split join
Python
raw = "python split join example"
words = raw.split()
print(words)

joined = "-".join(words)
print(joined)

csv_line = "red,green,blue"
colors = csv_line.split(",")
print(" | ".join(colors))
5 0 Open

Browse by section

Each section groups closely related Python snippets.