Google logo using Turtle in Python
Google logo using Turtle in Python Input (Code) :- import turtle as g g . bgcolor ( "black" ) g . color ( 'Royal Blue' ) g . pensize ( 5 ) g . speed ( 5 ) ## first circle {red color} g . forward ( 120 ) g . right ( 90 ) g . circle ( - 150 , 50 ) g . color ( 'dark green' ) g . circle ( - 150 , 100 ) g . color ( 'orange' ) g . circle ( - 150 , 60 ) g . color ( 'red' ) g . begin_fill () g . circle ( - 150 , 100 ) g . right ( 90 ) g . forward ( 50 ) g . right ( 90 ) g . circle ( 100 , 100 ) g . right ( 90 ) g . forward ( 50 ) g . end_fill () g . begin_fill () ## second circle {yellow color} g . color ( "orange" ) g . right ( 180 ) g . forward ( 50 ) g . right ( 90 ) g . circle ( 100 , 60 ) g . right ( 90 ) g . forward ( 50 ) g . right ( 90 ) g . circle ( - 150 , 60 ) g . end_fill () # third circle {green color} g . right ( 90 ) g . forward ( 50 ) g . right ( 90 ) g . circle ( 100 , 60 ) g . color ( 'dark green'...
Comments