Skip to main content

Posts

Afghanistan flag using python

   HOW TO MAKE AFGHANISTAN FLAG USING PYTHON TURTLE Hello Guys, I will tell you how to make the Afghanistan flag using python turtle in this blog. Follow the given instruction in the video. - import turtle as t  #so you don't have to write trutle many times - then make a rectangle color Green. - then make two rectangles one after the other inside the   Green rectangle and fill them with red and black colors respectively. - Now you are almost done with the flag and at last, you have to make the  Emblem of Afghanistan. - It is tough🙃  to make an Afghanistan emblem so, take the gif of the  Emblem of Afghanistan and display it at last.                                  #Result -------------------------The End-------------------------                      #SOURCE CODE           #flag   ...
Recent posts

India python turtle

    HOW TO  WRITE INDIA  USING PYTHON?? Hello Guys, in this blog I will tell you how to write INDIA,  1.  import turtle   on your Vs-Code. 2. Follow the given instruction in the video.👇🏼 INDIA                                           #SOURCE CODE import turtle as t t . pencolor ( ' white ' ) t . pensize ( 3 ) t . bgcolor ( ' #000080 ' ) #allignments t . penup () t . forward ( 58 ) t . left ( 90 ) t . forward ( 75 ) t . left ( 90 ) t . pendown () #function for curve def curve01 ( a , d ):     for i in range ( d ):         t . right ( a )         t . forward ( 1 ) def curve02 ( a , d ):     for i in range ( d ):         t . left ( a )         t . forward ( 1 ) #dddddddddd...

Iron man using pyton

    HOW TO MAKE  IRON MAN  USING    PYTHON TURTLE Hello Guys,  In this Blog  I   will tell you   how to  make   your  favorite   superhero.                                                                   #Result IRON MAN - MARVEL STUDIO                                             #Source Code #Iron man With python turtle from turtle import * bgpic (" lk.png ") # function for curve def curve01 ( a , d ):     for i in range ( d ):         right ( a )         forward ( 1 ) def curve02 ( a , d ):     for i in range ( d ):         left ( a )    ...