Does this answer your question?
def count(item_list):
return ([i for item in item_list for i in item.split()])
list_returned_by_count = count(item_list)
Then, you can use the len method on it.
len(list_returned_by_count)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…