Answer:
The function used to draw a line in a frame in python is the "line()" function.
Example:
from tkinter import *
root = Tk()
canvas = Canvas(root, width = 300, height = 300)
canvas.pack()
line = canvas.create_line(0, 0, 300, 300)
root.mainloop()
Fill in the blank:
line = canvas.create_ ________(0, 0, 300, 300)
The blank should be filled with a line.
Step-by-step explanation: