How to automaticaly check python source code for errors
Talk0
1,788pages on
this wiki
this wiki
from graphics import *
def main():
win = GraphWin("Line", 150, 100)
line= Line(Point(150,100))
line.draw(win)
win.getMouse() # pause for click in window
win.close()
How can i automatically check my Python code for errors.
Utilities for checking the code and finding bugs, including information about debuggers, etc...