Hey If you are beginner and want to learn a python then you are on right path. Learn basic as well as advanced programming in Python.

Search

Python program for drawing a circle.

PYTHON PROGRAM 





import turtle

window = turtle.Screen()

turtle.bgcolor("Blue")

turtle.color("red","yellow")

turtle.pensize(50)

turtle.begin_fill()

turtle.circle(300)

turtle.end_fill()

window.exitonclick()





*** Input && Output ***





No comments:

Post a Comment

let me know which type examples you want to comment me.