Line width
from Tkinter import * canvas = Canvas(width=300, height=300, bg='white') canvas.pack(expand=YES, fill=BOTH) canvas.create_line(0, 300, 150, 150, width=10, fill='green') mainloop()
1. | Draw a line | ||
2. | Line with pattern | ||
3. | Draw lines | ||
4. | Line color |