单行多语句-分号 (E702) 源自 pycodestyle linter。 作用 检查单行上的多行语句。 为什么这不好? 根据PEP 8,不鼓励在同一行中包含多子句语句。 示例 do_one(); do_two(); do_three() 建议改为 do_one() do_two() do_three()