"""
求某变量中最后一个单词的长度
例如s="Good morning, champ! You're going to rock this day"
分析思路:
遇到字符串问题,经常和列表结合使用来解决,
可以先用列表的.split()分割方法进行单词分割,
再用取列表以后一个元素s[-1],最后用len()方法输出长度
"""
#字符串列表
s="Good morning, champ! You're going to rock this day"
#分割列表字符串
fg_s=s.split()
print(fg_s)
#用len()长度方法,并打印出来
print(f"最后一个单词是:{fg_s[-1]},它的长度是:",len(fg_s[-1]))
运行结果:
该实例只是一个思路,可以在实际中灵活应用!
标签:python,len,列表,单词,fg,字符串,长度 From: https://blog.csdn.net/qq_22497491/article/details/140708957