I have an doubt in adding line colour using tkinter
from tkinter import *
screen = Tk()
screen.title("John Arthur - login system")
screen.geometry("500x300")
screen.resizable(False,False)
frame1 = Frame(screen,bg="green",height=100,width=500).pack(side="bottom")
frame2 = Frame(screen,bg="white",height=100,width=500).pack(after=frame1,side="bottom")
frame3 = Frame(screen,bg="orange",height=100,width=500).pack(after=frame2,side="bottom")
Circle = Canvas(screen,width = 100,height = 500,bg=None,lc="blue")
Circle.place(x = 10,y = 70)
Circle.create_oval(60,60,210,210)
screen.mainloop()
here I can create an circle but I need to colour the circle outline as blue can anyone help ?