简体   繁体   中英

Split a string only by first space in python

I have string for example: "238 NEO Sports" . I want to split this string only at the first space. The output should be ["238","NEO Sports"] .

One way I could think of is by using split() and finally merging the last two strings returned. Is there a better way?

Just pass the count as second parameter to str.split function.

>>> s = "238 NEO Sports"
>>> s.split(" ", 1)
['238', 'NEO Sports']

RTFM:str.split(sep=None, maxsplit=-1)

>>> "238 NEO Sports".split(None, 1)
['238', 'NEO Sports']

Use string.split()

string = "238 NEO Sports"
print string.split(' ', 1)

Output:

['238', 'NEO Sports']

**Use in-built terminology, as it will helpful to remember for future reference. When in doubt always prefer string.split( shift+tab )

string.split(maxsplit = 1)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM