需要有关单词检测子例程的帮助

发布于 2024-11-27 05:45:18 字数 1437 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

荭秂 2024-12-04 05:45:18

只需将 find_words 中的 print 替换为对变量的赋值,并在 for 循环结束后打印它。

Simply replace print in find_words with an assignment into variable and print it after the for loop ends.

淡水深流 2024-12-04 05:45:18

bvr的答案将解决问题的直接需求。

建议使用 exists 而不是 define 检查字符串是否存在于字典中。这将确保诸如 'bemyg' 这样的非单词永远不会成为字典哈希中的键。

bvr's answer will address the immediate needs of the problem.

A recommendation is to use exists instead of defined to check if the string is present in the dictionary. This will ensure that non-words such as 'bemyg' will never become keys in the dictionary hash.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文