Concentric circle Get link Facebook X Pinterest Email Other Apps April 04, 2024 import turtlet=turtle.Turtle( )r=12for i in range(20):t.speed(50)t.circle(r*i)t.up( )t.sety( (r*i)*(-1) )t.down( )Note:- line (5-9) use one tab Get link Facebook X Pinterest Email Other Apps Comments
CIRCLE FUNCTION April 04, 2024 From tkinter import* win=Tk( ) win.geometry("400×600") c=Canvas(win,width=400,height=400) c.pack( ) c.create_oval(60,60,210,210) win.mainloop( ) Read more
Square function April 04, 2024 import turtle t=turtle.Turtle( ) t.forward(100) t.left(90) t.forward(100) t.left(90) t.forward(100) t.left(90) t.forward(100) t.left(90) Read more
Comments
Post a Comment