On day 43 of the 365 days of code, I am still on the turtle documentation. Using turtle to draw a square: from turtle import Turtle, Screen maddy = Turtle() maddy.shape( "turtle" ) maddy.color( "blue" ) for i in range ( 4 ): maddy.forward( 100 ) maddy.left( 90 ) screen = Screen() screen.exitonclick()
I'm back. I'm back. I'm back. After a not so long break and some soul searching, I'm back on my Python journey. Today we'll be learning about the turtle documentation. I've tried going through documentations before (even Pytorch's ) but could not really understand them. Maybe I did not try enough or maybe I just lacked experience. It is the later. I do lack experience. :) I am quite excited for today's class.