为什么把参数s,换成其他就错了?比如换成x
如果把标准答案中的
filter(lambda s:s and len(s.strip())
换成:
filter(lambda x:x and len(x.strip())
输出还是一样,
可是会报错,为什么?
如果把标准答案中的
filter(lambda s:s and len(s.strip())
换成:
filter(lambda x:x and len(x.strip())
输出还是一样,
可是会报错,为什么?
2018-09-05
举报