メインコンテンツへスキップ

String Split in Python Tutorial

Learn how you can perform various operations on string using built-in Python functions like split, join and regular expressions.
2020年6月25日  · 2 分 読む

AIで探索

ChatGPTClaudePerplexity

Python string method split() inputs a string value and outputs a list of words contained within the string by separating or splitting the words on all the whitespaces by default. It also has an optional argument for limiting the number of splits.

The split() method converts the string into other data types like lists by breaking a string into pieces. Python provides us with two methods: .split() and .rsplit().

Both .split(), and .rsplit() take a separating element by which we are splitting the string, and a maxsplit tells us the maximum number of substrings we want.

Example of Using the .split() Method

string1

Let's split the above string using the .split() method. Notice that the .split() method starts splitting at the left of the string. It takes two arguments: separator sep and maximum splits of the string maxsplit.

string2

Example of Splitting Strings into Many Substrings

In the below example, you will split the string file into many substrings at line boundaries. Then, you will print out the resulting variable file_split. Finally, complete the for-loop to split the strings into many substrings using commas as a separator element.

substrings

When we run the above code, it produces the following result:

['mtv films election, a high school comedy, is a current example', 'from there, director steven spielberg wastes no time, taking us into the water on a midnight swim'] ['mtv films election', ' a high school comedy', ' is a current example'] ['from there', ' director steven spielberg wastes no time', ' taking us into the water on a midnight swim'].

Try it for yourself.

To learn more about string operations, please see this video from our course, Regular Expressions in Python and check out our Python Regular Expression Tutorial.

This content is taken from DataCamp’s Regular Expressions in Python course by Maria Eugenia Inzaugarat.

トピック
Python

Learn more about Python

Courses

Pythonで学ぶ正規表現

4時間
49.7K
文字列操作を学び、正規表現を自在に使いこなせるようになりましょう。
詳細を見るRight Arrow
コースを開始

Courses

Python 入門

4時間
7M
Pythonでデータ分析の基礎をわずか4時間で習得しましょう。 このオンラインコースでは、Pythonのインターフェースを紹介し、よく使われるパッケージを見ていきます。
もっと見るRight Arrow
関連している

tutorials

Python String Tutorial

In this tutorial, you'll learn all about Python Strings: slicing and striding, manipulating and formatting them with the Formatter class, f-strings, templates and more!
Sejal Jaiswal's photo

Sejal Jaiswal

10 分

tutorials

Python String Replace Tutorial

Learn to find and replace strings using regular expressions in Python.
DataCamp Team's photo

DataCamp Team

2 分

tutorials

Python Concatenate Strings Tutorial

Learn various methods to concatenate strings in Python, with examples to illustrate each technique.
DataCamp Team's photo

DataCamp Team

5 分

tutorials

Python String format() Tutorial

Learn about string formatting in Python.
DataCamp Team's photo

DataCamp Team

5 分

tutorials

How to Split Lists in Python: Basic Examples and Advanced Methods

Learn how to split Python lists with techniques like slicing, list comprehensions, and itertools. Discover when to use each method for optimal data handling.
Allan Ouko's photo

Allan Ouko

11 分

tutorials

How to Trim a String in Python: Three Different Methods

Learn the fundamentals of trimming leading and trailing characters from a string in Python.
Adel Nehme's photo

Adel Nehme

6 分

もっと見るもっと見る