当前位置: 代码迷 >> 综合 >> 完成compute函数,使得它可以返回任意长度字符串列表中每个字符串的长度,结果保存在一个列表中。 例如:compute(['Bill','Gates'])=[4,4]
  详细解决方案

完成compute函数,使得它可以返回任意长度字符串列表中每个字符串的长度,结果保存在一个列表中。 例如:compute(['Bill','Gates'])=[4,4]

热度:39   发布时间:2023-12-19 00:37:16.0

完成compute函数,使得它可以返回任意长度字符串列表中每个字符串的长度,结果保存在一个列表中。
例如:compute([‘Bill’,‘Gates’])=[4,4]

def compute(lis):print(lis)ans = list(map(len,lis))return ans
  相关解决方案