In the previous chapter, we learned how to create a tic-tac-toe app with Tkinter . We also learned all about events and how to use them to make our app respond to external events (mouse click, keyboard key press, etc.).
In this chapter, we’ll learn all about “drawing” on your Tkinter screen using “canvas” and use that to make a paint app. You’ll be able to draw with a pen and draw circles/ovals, straight lines, and squares/rectangles. You’ll also be able to change the size of your pen and ...