转载:https://blog.csdn.net/youyouran12314/article/details/77719261 Pycharm环境下显示 在代码中显示许多波浪线,查看详情显示Spellchecker inspection helps locate typos and misspelling in your code, comments and literals, and fix them in one click.意思:拼写检查器检查有助于定位错别字和拼写错误的代码.注释和文字…
译过来就是,可简化连锁比较: case 1 if a >= 0 and a <= 9: 1 可简化为: if 0 <= a <= 9: 1 就像我们的数学表达式一样.显然这种情形只适用于 and 的情形. case 2 if score > 100 and score < 0: 1 会被简化为: if 100 < score < 0: 1 显然这也是一个永假式,不怪 PyCharm 不够智能,只是你把表达式写错了: if score > 100 or…