Python 获取字符串的最后一个单词
在 Python 中,我们可以使用字符串的 split()
方法将字符串分割成单词列表,然后通过索引获取最后一个单词。
实例
def get_last_word(text):
words = text.split()
return words[-1] if words else ""
# 示例
text = "Hello, this is a test string"
last_word = get_last_word(text)
print(last_word)
words = text.split()
return words[-1] if words else ""
# 示例
text = "Hello, this is a test string"
last_word = get_last_word(text)
print(last_word)
代码解析:
text.split()
:将字符串text
按空格分割成一个单词列表words
。words[-1]
:获取列表words
中的最后一个元素,即最后一个单词。if words else ""
:如果words
列表为空(即字符串为空),则返回空字符串。
输出结果:
string
点我分享笔记