<div>I run the following code and the red line and black line show at the same time. is there anyway to show the red line first, then the black line? for example, after I click the 'enter' key?</div>
<div> </div>
<div>from Tkinter import *<br>tk = Tk()<br>canvas = Canvas(tk, bg="white", bd=0, highlightthickness=0)<br>canvas.pack(fill=BOTH, expand=YES)<br>canvas.create_line(100, 200, 350, 200, arrow=LAST,fill='red')<br>canvas.create_line
(100, 0, 100, 200, arrow=FIRST)<br>tk.mainloop()</div>