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:20260308T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20261101T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20260423T180000
DTEND;TZID=America/Los_Angeles:20260423T190000
DTSTAMP:20260424T113258
CREATED:20260424T020402Z
LAST-MODIFIED:20260424T020426Z
UID:33257-1776967200-1776970800@www.ayclogic.com
SUMMARY:6:00 PM- Python OOP- Joshua
DESCRIPTION:Today We did\n\ncontinue with dictioanries with classes review\n\n  \n  \nHomework\nLink to review\nhttps://drive.google.com/file/d/1kGkhBCy1dbJ8XMP5MjB03Wnlw9b3_vUN/view?usp=sharing \n\n#Homework\n#Part 1 Fill this in\nclass Pokemon:\n\n    def __init__(self\,name\, type\, hp\, attack):\n        # fill in this part\n        pass\n\n    def use_move(self):\n        # print ("name uses type attack") but with the pokemons name\,type\, and attack\n        pass\n\n\n# part 2 create a team of 6\nmy_pokemon_team = {}\n# i want you to  put 4 in your pokemon team\n# use a number for its key (1\,2\,3\,4) or any thing really\n# for the value\, but a pokemon object  made from the class template\n\n# part 3\n# i want to do the same proccess\n# I need you to print the third pokemons type\n# use a for loop to print each pokemons name\, type \, and attack\n# your hint( you can use .use_move() to print this)
URL:https://www.ayclogic.com/event/600-pm-python-oop-joshua-17/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20260423T190000
DTEND;TZID=America/Los_Angeles:20260423T200000
DTSTAMP:20260424T113258
CREATED:20260424T031702Z
LAST-MODIFIED:20260424T031702Z
UID:33260-1776970800-1776974400@www.ayclogic.com
SUMMARY:7:00 PM- Intro to Python - Joshua
DESCRIPTION:Today We DID\n\nWe Learned about\nAn alternative way of drawing. Rather than locations\, we can command the turtle to turn left\, right and right with\n\nturtle.forward(100) (goes 100 steps in the direction of the arrow\nturtle.left(90) (arrow turns left 90 degrees)\nturtle.right(90) (arrow turns right 90 degrees)\n\n\nCombining functions to draw more complicated shapes\n\nHomework\nSo we created the function called rectangle below. Rather than figuring out multiple different turtle .forward\, .left\, and .right \, lets use are new rectangle to draw shapes! as long as the shape can be made with rectangles\, we can make it to ! \nYour mission is to draw the letter E only using the rectangle function. Adjust the x\,y\,length\,width\, and color as needed and multiple rectangles to create a capital E. \nA secondary goal\, is to create the DRAW_E function\, which will take an x and a y (and color if you would like) and draw it in that location. You can do it! it is very similar to last weeks homework/lesson. \ndef rectangle(x\,y\,length\,width\, color): \nturtle.penup()\nturtle.goto(x\,y)\nturtle.pendown() \nturtle.color(color)\nturtle.begin_fill()\nturtle.forward(width)\nturtle.left(90)\nturtle.forward(length)\nturtle.left(90)\nturtle.forward(width)\nturtle.left(90)\nturtle.forward(length)\nturtle.left(90) # we need reset the arrow\nturtle.end_fill() \nrectangle(-100\,0\,200\,75\,”red”) \n 
URL:https://www.ayclogic.com/event/700-pm-intro-to-python-joshua-18/
END:VEVENT
END:VCALENDAR