Popular posts from this blog
Create Amazing Designs Using Python Programming 😍
CREATE A M A Z I N G D E S I G N USING TURTLE import turtle window = turtle.Screen() window.setup(600,600) spiral = turtle.Turtle() spiral.speed(10) window.bgcolor("black") colours=[" yellow ","blue"," white "," green "] c=0 # @concepts.of.programming (Follow us on instagram) for i in range(50): spiral.forward(i * 10) spiral.right(144) spiral.color(colours[c]) if c== 3: c = 0 else: c += 1 turtle.done() Following output is only for reference: 💬 Do follow us on Instagram: IG- @concepts.of.programming
Doreamon using PYTHON from turtle import * def my_goto(x, y): penup() goto(x, y) pendown() #Draw eyes def eyes(): fillcolor("#ffffff") begin_fill() tracer(False) a = 2.5 for i in range(120): if 0 <= i < 30 or 60 <= i < 90: a -= 0.05 lt(3) fd(a) else: a += 0.05 lt(3) fd(a) tracer(True) end_fill() #Draw beard def beard(): my_goto(-32, 135) seth(165) fd(60) my_goto(-32, 125) seth(180) fd(60) my_goto(-32, 115) seth(193) fd(60) my_goto(37, 135) seth(15) fd(60) my_goto(37, 125) seth(0) fd(60) my_goto(37, 115) seth(-13) fd(60) def mouth(): my_goto(5, 148) seth(270) fd(100) seth(0) circle(120, 50) seth(230) circle(-120, 100) def scarf(): fillcolor('#e70010') begin_fill() seth(0) fd(200) circle(-5, 90...

Comments
Post a Comment