I\'m trying to draw a right angle triangle with tkinter. I can\'t figure out how to do it, I can do a rectangle and then another one but I cant get the second rectangle to be a
You can use polygon-function to draw a triangle. Just specify a list of corner-points of your triangle as argument.
polygon
list
points = [x1,y1, x2,y2, x3,y3] can.create_polygon(points, fill='white')
Check out the tkinter-documentation for more info.