美文网首页
python笔试面试项目实战2020百练10-找出每行中长度超过

python笔试面试项目实战2020百练10-找出每行中长度超过

作者: python测试开发 | 来源:发表于2020-10-14 11:05 被阅读0次

找出每行中长度超过3的单词

2,编程题 -- 此题如能在本机(unbuntu)上调试出来更佳。

在以下文本中找出 每行中长度超过3的单词:

Call me Ishmael. Some years ago - never mind how long precisely - having
little or no money in my purse, and nothing particular to interest me
on shore, I thought I would sail about a little and see the watery part
of the world. It is a way I have of driving off the spleen, and regulating
the circulation. - Moby Dick

python的预期结果(尽量不超过3行搞定):

[['Call', 'Ishmael.', 'Some', 'years', 'never', 'mind', 'long', 'precisely', 'having'], ['little', 'money', 'purse,', 'nothing', 'particular', 'interest'], ['shore,', 'thought', 'would', 'sail', 'about', 'little', 'watery', 'part'], ['world.', 'have', 'driving', 'spleen,', 'regulating'], ['circulation.', 'Moby', 'Dick']]]

参考资料

参考答案

相关文章

网友评论

      本文标题:python笔试面试项目实战2020百练10-找出每行中长度超过

      本文链接:https://www.haomeiwen.com/subject/hpvipktx.html