The '_'.join(list) method on the underscore string '_' glues together all strings in the list using the underscore string as a delimiter—and returns a new string. For example, the expression '_'.join(['a', 'b', 'c']) returns the new string 'a_b_c'.
Definition and Usage
The string.join(iterable) method joins the string elements in the iterable to a new string by using the string on which it is called as a delimiter.
โฅ๏ธ Info: Are you AI curious but you still have to create real impactful projects? Join our official AI builder club on Skool (only $5): SHIP! - One Project Per Month
Here’s a short example:
friends = ['Alice', 'Bob', 'Carl']
# Empty delimiter string ''
print(''.join(friends))
# AliceBobCarl
# Delimiter string '_'
print('_'.join(friends))
# Alice_Bob_CarlThe string elements in the list friends are concatenated using the delimiter string '' in the first example and the underscore character '_' in the second example.
Related articles:
- Python Join List [Ultimate Guide]
- Python Concatenation
- Python How to Concatenate Lists
- The Ultimate Guide to Python Lists
Syntax
You can call this method on each list object in Python. Here’s the syntax:
string.join(iterable)
| Argument | Description |
|---|---|
iterable | The elements to be concatenated. |
Code Puzzle
To practice what you’ve learned so far, feel free to solve the following interactive code puzzle:
Exercise: Guess the output and check if you were right by running the interactive code shell.
Where to Go From Here?
Enough theory. Letโs get some practice!
Coders get paid six figures and more because they can solve problems more effectively using machine intelligence and automation.
To become more successful in coding, solve more real problems for real people. Thatโs how you polish the skills you really need in practice. After all, whatโs the use of learning theory that nobody ever needs?
You build high-value coding skills by working on practical coding projects!
Do you want to stop learning with toy projects and focus on practical code projects that earn you money and solve real problems for people?
๐ If your answer is YES!, consider becoming a Python freelance developer! Itโs the best way of approaching the task of improving your Python skillsโeven if you are a complete beginner.
If you just want to learn about the freelancing opportunity, feel free to watch my free webinar โHow to Build Your High-Income Skill Pythonโ and learn how I grew my coding business online and how you can, tooโfrom the comfort of your own home.