保留Python字符串的第一个字?

时间:2013-04-05 17:42:39

标签: python

假设我有一个全名列表,例如:

names : ["Katie von Martin", "Bob Austin Marley", "John Travolta", "Josh Hartnett"]

分割每个字符串并仅保留第一个单词的函数是什么样的?

def keepFirstName():
    for name in names:
        ????

3 个答案:

答案 0 :(得分:11)

最简单的是:

def first_names(names):
    for name in names:
        yield name.split()[0]

e.g。

>>> print list(first_names(["Katie von Martin", "Bob Austin Marley", "John Travolta", "Josh Hartnett"]))
['Katie', 'Bob', 'John', 'Josh']

在某些情况下,如果您只想要第一个单词,则可能不想拆分字符串...例如如果字符串 REALLY 长。在这种情况下,您可以使用str.find来获取字符串中第一个空格的位置,然后您可以切片到该点以仅为您提供名字:

>>> def first_names(names):
...     for name in names:
...         idx = name.find(' ')
...         yield name[:idx] if idx > 0 else name
... 
>>> print list(first_names(["Katie von Martin", "Bob Austin Marley", "John Travolta", "Josh Hartnett"]))
['Katie', 'Bob', 'John', 'Josh']

然而,在实践中,这几乎是不必要的。

答案 1 :(得分:8)

或者,这将为您提供第一句话:

>>> names = ["Katie von Martin", "Bob Austin Marley", "John Travolta", "Josh Hartnett"]
>>> first_words = [words.split()[0] for words in names]
>>> print first_words 

['Katie', 'Bob', 'John', 'Josh']

答案 2 :(得分:1)

要保留它并将其存储在列表中,

b=[]
for i in names:
    b.append(i.split()[0])

列表b包含名字