python自学日记16——调试(常见错误)python自学日记16——调试(常见错误)2.运行时错误
python自学日记16——调试(常见错误)整理一套错误检查清单将在你未来编程时提供很大的助力。1.语法错误语法错误由python在将源代码翻译为字节的过程中产生。例如在def语句的末尾漏电冒号会产生一个冗余的错误信息:def repeat_lyrics(): print_lyrics() print_lyrics()repeat_lyrics()def print_...