BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//American Young Coder - ECPv6.10.1.1//NONSGML v1.0//EN
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-WR-CALNAME:American Young Coder
X-ORIGINAL-URL:https://www.ayclogic.com
X-WR-CALDESC:Events for American Young Coder
REFRESH-INTERVAL;VALUE=DURATION:PT1H
X-Robots-Tag:noindex
X-PUBLISHED-TTL:PT1H
BEGIN:VTIMEZONE
TZID:America/Los_Angeles
BEGIN:DAYLIGHT
TZOFFSETFROM:-0800
TZOFFSETTO:-0700
TZNAME:PDT
DTSTART:20240310T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20241103T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240703T130000
DTEND;TZID=America/Los_Angeles:20240703T150000
DTSTAMP:20260428T143951
CREATED:20240703T195454Z
LAST-MODIFIED:20240704T011806Z
UID:25855-1720011600-1720018800@www.ayclogic.com
SUMMARY:1 PM – Intro To Python (Summer Session) – Darin
DESCRIPTION:What We Did Today:\n\nLearnt how to use the turtle module to draw in python.\nPackaged our code into functions so it becomes easier for us to draw things.\n\nHomework:\nDo the homework in the file called Jul3_AdvancedTurtleDrawing and submit it into the google drive when you are finished. \nContinuing the code shown below\, convert the shape into a function that can be used to draw the shape at any given x and y coordinate. \n\n# Jul3_AdvancedTurtleHW\nimport turtle as t\nimport random as r\n\nt.bgcolor("lightblue")\nt.speed("fastest")\n\ndef makeRectangle(x\, y\, width\, height\, c):\n   t.penup()\n   t.goto(x\, y)\n   t.pendown()\n\n   t.color(c)\n   t.begin_fill()\n\n   for i in range(2):\n      t.forward(width) # width\n      t.right(90)\n      t.forward(height) # height\n      t.right(90)\n\n   t.end_fill()\n\n# how to make a circle\ndef makeCircle(x\, y\, radius\, c):\n   t.color(c)\n   # moving locations\n   t.penup()\n   t.goto(x\, y)\n   t.pendown()\n\n   t.begin_fill()\n   t.circle(radius) # radius\n   t.end_fill()\n\n# transform this into a function with x and y coordinates that you can set\nmakeRectangle(0\, 0\, 200\, 200\, "black")\nmakeCircle(100\, -150\, 50\, "red")\nmakeCircle(20\, -50\, 20\, "blue")\nmakeCircle(170\, -170\, 20\, "green")\nmakeCircle(170\, -60\, 20\, "yellow")\n\ndef makeShape():\n   # implement this\n\nmakeShape(200\, 0)\nmakeShape(-200\, -200)\n\nNotes:\nIf you have any questions\, you can email me at ddjapri@ayclogic.com!!
URL:https://www.ayclogic.com/event/1-pm-intro-to-python-summer-session-darin/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
END:VCALENDAR