Posts

Showing posts with the label python

make Iron man helmet codinets ankur1 ankur2 ankur3

make Iron man helmet codinets ankur1  ankur2   ankur3  ankur1 :  [[(-40, 120), (-70, 260), (-130, 230), (-170, 200), (-170, 100), (-160, 40), (-170, 10), (-150, -10), (-140, 10),(-40, -20), (0, -20)],  [(0, -20), (40, -20), (140, 10), (150, -10), (170, 10), (160, 40), (170, 100), (170, 200), (130, 230), (70, 260),(40, 120), (0, 120)]] ankur2 : [[(-40, -30), (-50, -40), (-100, -46), (-130, -40), (-176, 0), (-186, -30), (-186, -40), (-120, -170), (-110, -210),(-80, -230), (-64, -210), (0, -210)],  [(0, -210), (64, -210), (80, -230), (110, -210), (120, -170), (186, -40), (186, -30), (176, 0), (130, -40),(100, -46), (50, -40), (40, -30), (0, -30)]] ankur3 : [[(-60, -220), (-80, -240), (-110, -220), (-120, -250), (-90, -280), (-60, -260), (-30, -260), (-20, -250),(0, -250)],  [(0, -250), (20, -250), (30, -260), (60, -260), (90, -280), (120, -250), (110, -220), (80, -240), (60, -220),(0, -220)]] watch full video  link : Click Here Thank you !

Doraemon make using python

Image
  How to Make Doraemon using python ? from turtle import * def ankle (x, y):     penup()     goto(x, y)     pendown() 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() def daari ():     ankle( - 32 , 135 )     seth( 165 )     fd( 60 )     ankle( - 32 , 125 )     seth( 180 )     fd( 60 )     ankle(...

How to make design using python ?

Image
 hii How to make design using python ? let's start click 👉 :- my video link     go to my you tube channel  plz subscribe like  comment from turtle import * speed ( 0 ) bgcolor ( 'black' ) color ( 'powder blue' ) pensize ( 2 ) for i in range ( 600 ):     if i % 5 == 0 :         lt ( 3 )     fd ( 200 )     lt ( 360 / 5 ) done ()