说我有以下的话我想放在一个列表中
"cat,dog,fish" (first row)
"turtle,charzard,pikachu,lame" (second row)
"232.34,23.4,242.12%" (third row)
我的问题是我如何计算每一行中的标记,比如第一行有 3 个,第二行有 4 个,第三行有 3 个。之后我如何计算字符,然后为每一行确定哪个令牌有最多字符?所以输出看起来像
token count = 3, character count = 10, fish has the most characters
token count = 4, character count = 25, charzard has the most characters
token count = 3, character count = 17, 242.12% has the most characters
只使用像 len() 这样的简单列表方法。并使用逗号作为分隔符。谢谢,我真的迷路了,因为每次我尝试使用 strip(',') 删除逗号时都会出错