Skip to main content

Contact Us

Contact Us

Send your queries to this email address.

You may also contact me on Facebook or LinkedIn.

Comments

Popular Posts

How to Draw Pakistani Flag using Python

Python Turtle Graphics showing Pakistani Flag   Python Code import turtle # Create a turtle object flag = turtle.Turtle() # Set the background color to white turtle.bgcolor( "black" ) # Draw the green rectangle flag.begin_fill() flag.color( "green" ) flag.forward( 200 ) flag.left( 90 ) flag.forward( 100 ) flag.left( 90 ) flag.forward( 200 ) flag.left( 90 ) flag.forward( 100 ) flag.end_fill() # Draw the white rectangle flag.penup() flag.goto( 0 , 100 ) flag.pendown() flag.color( "white" ) flag.begin_fill() flag.forward( 100 ) flag.left( 90 ) flag.forward( 40 ) flag.left( 90 ) flag.forward( 100 ) flag.left( 90 ) flag.forward( 40 ) flag.end_fill() # Draw the crescent flag.penup() flag.goto( 150 , 75 ) flag.pendown() flag.color( "white" ) flag.begin_fill() flag.circle( 20 ) flag.end_fill() flag.penup() flag.goto( 170 , 85 ) flag.pendown() flag.color( "green" ) flag.begin_fill() flag.circle( 25...

Contact Form

Name

Email *

Message *