how to draw loop auto line in python using tkinter

# using the Tkinter canvas to# draw a line from coordinates x1,y1 to x2,y2# create_line(x1, y1, x2, y2, width=1, fill="black")try:    # Python2    import Tkinter as tkexcept ImportError:    # Python3    import tkinter as tkroot = tk.Tk()root.title("drawing lines")# create the drawing canvascanvas = tk.Canvas(root, width=450, height=450, bg='white')canvas.pack()# draw horizontal linesx1 = 0x2 = 450for k in range(0, 500, 50):    y1 = k    y2 = k    canvas.create_line(x1, y1, x2, y2)# draw vertical linesy1 = 0y2 = 450for k in range(0, 500, 50):    x1 = k    x2 = k    canvas.create_line(x1, y1, x2, y2)root.mainloop()

Are there any code examples left?
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source