BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//American Young Coder - ECPv6.10.1.1//NONSGML v1.0//EN
CALSCALE:GREGORIAN
METHOD:PUBLISH
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:20250309T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20251102T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251024T170000
DTEND;TZID=America/Los_Angeles:20251024T180000
DTSTAMP:20260501T174127
CREATED:20251025T012413Z
LAST-MODIFIED:20251025T012413Z
UID:31437-1761325200-1761328800@www.ayclogic.com
SUMMARY:5 PM – Intro To Python – Abigail
DESCRIPTION:Today We\n\n\n\n\nWe went over last week’s HW.\nWe went over for loops.\n\nHomework\n(Upload your homework into your Google Drive HW folder a day before the class starts) \n\nMake a new file called “Oct24_ForLoop_HW.py”\nDo copy the code from pages 54 – 55.\nDo the 4-1 & 4-2 from the Try It Yourself section on page 56.\n\nIf you have any questions\, email me at abigail@ayclogic.com
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-abigail-5/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251024T170000
DTEND;TZID=America/Los_Angeles:20251024T180000
DTSTAMP:20260501T174127
CREATED:20251025T010416Z
LAST-MODIFIED:20251025T010416Z
UID:31435-1761325200-1761328800@www.ayclogic.com
SUMMARY:5 PM – Intro To Python – Darin
DESCRIPTION:Today We Do\n\nWe learnt how to draw shapes next to each other and created general purpose shape functions.\n\nHomework\n\nContinue in your file “Oct24_TurtleRobot.py” and draw the eyes\, mouth\, legs\, and arms as shown at the end of lecture.\n\n \n  \nNotes:\nYou can reach me at ddjapri@ayclogic.com. \nAll class notes can be found here: https://drive.google.com/drive/folders/1ClxGyA_3oLZtwhgN0j3BVZjpffoxMHNj?usp=sharing
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-darin-25/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251022T190000
DTEND;TZID=America/Los_Angeles:20251022T200000
DTSTAMP:20260501T174127
CREATED:20251023T015958Z
LAST-MODIFIED:20251023T032343Z
UID:31403-1761159600-1761163200@www.ayclogic.com
SUMMARY:7:00 PM – Python Game Development – Darin
DESCRIPTION:What We Did Today:\n\nSpawned the coin and created costume alternation logic\nCoded logic for collisions for coin\, player\, and tube\n\nHomework:\n\n\n# homework\n# Fix the bug where when the player gets dizzy\, it shouldn't be able to collect coins anymore\n\n# Create the home screen of the game\n# 1. Separate most of the code in game_loop to be in a functino called self.game_in_session()\n# 2. create a new function called game_home_screen()\n# 3. write ur logic in game_home_screen to spawn the FlappyBirdLogo.png\, Play.png and Credit_button.png\n\n\nNotes:\nAll class notes can be found here: https://gitlab.com/billhan5732/wed-630-flappy-duck-bill/-/tree/bill/src \nYou can reach me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/700-pm-python-game-development-darin-3/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251017T170000
DTEND;TZID=America/Los_Angeles:20251017T180000
DTSTAMP:20260501T174127
CREATED:20251018T024320Z
LAST-MODIFIED:20251025T012632Z
UID:31355-1760720400-1760724000@www.ayclogic.com
SUMMARY:5 PM – Intro To Python – Abigail
DESCRIPTION:Today We\n\n\n\n\nWe went over last week’s HW.\nWe went over lists.\n\nHomework\n(Upload your homework into your Google Drive HW folder a day before the class starts) \n\nMake a new file called “Oct17_List_HW.py”\nDo copy the code from pages 37 – 41.\nYou do NOT need to do the Try It Yourself on page 41. (Sorry for the miscommunication!)\n\nIf you have any questions\, email me at abigail@ayclogic.com
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-abigail-4/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251017T170000
DTEND;TZID=America/Los_Angeles:20251017T180000
DTSTAMP:20260501T174127
CREATED:20251018T014305Z
LAST-MODIFIED:20251018T014305Z
UID:31353-1760720400-1760724000@www.ayclogic.com
SUMMARY:5 PM – Intro To Python – Darin
DESCRIPTION:Today We Do\n\nWe continued learning the basics of Python Digital drawing using Turtle.\n\nHomework\n\nCreate a new file “Oct17_Turtle3FunctionsHW.py”\nLook at this image for your coordinates guidance\n\n\n\n\nDraw the Square\, Rectangle\, and Triangle using a shape function. The Square function has been defined in class\, but the other two you will have to create.\n\ndef drawSquare(x\, y\, size\, c):\n   t.penup()\n   t.goto(x\, y)\n   t.pendown()\n\n   t.color(c)\n\n   t.begin_fill()\n   for i in range(4):\n      t.forward(size)\n      t.right(90)\n   t.end_fill()\n\ndrawSquare(-200\, 200\, 10\, "black")\ndrawSquare(50\, 200\, 100\, "green")\n\n# to make a new shape function\, modify only the part that draws\n# modify whatever is in the for loop.\n\nHint: Start by drawing the rectangle and triangle with just t.forward() and t.right()/t.left() and then simplify the code with for loops\, this will be the main meat of your drawing functions\n\n\n  \nNotes:\nYou can reach me at ddjapri@ayclogic.com. \nAll class notes can be found here: https://drive.google.com/drive/folders/1ClxGyA_3oLZtwhgN0j3BVZjpffoxMHNj?usp=sharing
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-darin-24/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251015T190000
DTEND;TZID=America/Los_Angeles:20251015T200000
DTSTAMP:20260501T174127
CREATED:20251016T031455Z
LAST-MODIFIED:20251022T081323Z
UID:31320-1760554800-1760558400@www.ayclogic.com
SUMMARY:7 PM – Intro To Python – Yitong
DESCRIPTION:Today we:\n\nContinued learning about functions without return values.\nStarted learning about functions with return values.\n\nPython file from class: https://drive.google.com/drive/u/3/folders/143UhHBu3LouTWr3l0WDVNGwpC6gElwjl \nHomework:\n\nName your Python file oct15_functions_with_return_value\nDo the Try-It-Yourself questions (#8-1\, #8-2) on page 131\, (#8-3\, #8-4\, #8-5) on page 136.\nCopy code from pages 137-139.\n\n\nEmail me for help: yitong@ayclogic.com
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-yitong-14/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251015T190000
DTEND;TZID=America/Los_Angeles:20251015T200000
DTSTAMP:20260501T174127
CREATED:20251016T030606Z
LAST-MODIFIED:20251016T030708Z
UID:31312-1760554800-1760558400@www.ayclogic.com
SUMMARY:7:00 PM – Python Game Development – Darin
DESCRIPTION:What We Did Today:\n\nCreated logic for alternating costumes\nTidied up the code by refactoring\nSpawned the score variable onto our screen\n\nHomework:\n\n\n# homework\n# spawn the coins into the game\, but place them in between the tubes (you can place them in two fixed locations up and down)\n# define collisions for them as we did with the duck and tubes\n# when a collision happens\, increment score by 2\, and make the coin disappear\n# you can make it disappear by setting dokillb to True in\n# "pygame.sprite.groupcollide(self.player_group\, self.coin_group\, False\, True\, self.player_coin_coll"\n\n# make sure also that the coin changes costumes.\n\n\nNotes:\nAll class notes can be found here: https://gitlab.com/billhan5732/wed-630-flappy-duck-bill/-/tree/bill/src \nYou can reach me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/700-pm-python-game-development-darin-2/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251010T180000
DTEND;TZID=America/Los_Angeles:20251010T190000
DTSTAMP:20260501T174127
CREATED:20251011T021410Z
LAST-MODIFIED:20251011T021410Z
UID:31258-1760119200-1760122800@www.ayclogic.com
SUMMARY:6 PM – Python Game Development – Joel (Darin Sub)
DESCRIPTION:Today We Did:\n\nCreated the collision logic for the coin\, added game modes\, and randomized spawn point of the coin.\n\nHomework\n# homework\n# create a method called handle_play_and_credit_buttons() that spawns the play button but also checks for any clicks\n# when a click is done on the play button\, change the game mode to GAME_LIVE. make sure the clicks only get\n# detected on the play button\n\n# do the same for the credits button <- same logic as the play button
URL:https://www.ayclogic.com/event/6-pm-python-game-development-joel-darin-sub/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251010T170000
DTEND;TZID=America/Los_Angeles:20251010T180000
DTSTAMP:20260501T174127
CREATED:20251011T034743Z
LAST-MODIFIED:20251017T175411Z
UID:31265-1760115600-1760119200@www.ayclogic.com
SUMMARY:5 PM – Intro To Python – Abigail
DESCRIPTION:Today We\n\n\n\n\nWe learned about user input.\nWe learned what is a Strings and what is an Integer.\nWe learned how to convert Strings into Integers\n\nHomework\n(Upload your homework into your Google Drive HW folder a day before the class starts) \n\nMake a new file called “Oct10_InputFromShell_HW.py”\nIn your Python Crash Course book\, copy down the code from pages 114-116.\nThen\, do questions 7-1 & 7-2 in page 117 from the Try it Yourself section.\n\nIf you have any questions\, email me at abigail@ayclogic.com
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-abigail-3/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251010T170000
DTEND;TZID=America/Los_Angeles:20251010T180000
DTSTAMP:20260501T174127
CREATED:20251011T021206Z
LAST-MODIFIED:20251011T021303Z
UID:31257-1760115600-1760119200@www.ayclogic.com
SUMMARY:5 PM – Intro To Python - Darin
DESCRIPTION:Today We Do\n\nWe reviewed the second quiz.\nWe started Python Digital drawing using Turtle.\n\nHomework\n\nCreate a new file “Oct10_Turtle4ShapesHomework.py”\nDraw these shapes using t.goto() and t.penup() and t.pendown()\nLook at this image for your coordinates guidance\n\n\n\n\n\n\n 
URL:https://www.ayclogic.com/event/6-pm-intro-to-python-55/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251008T190000
DTEND;TZID=America/Los_Angeles:20251008T200000
DTSTAMP:20260501T174127
CREATED:20251009T030927Z
LAST-MODIFIED:20251009T030927Z
UID:31233-1759950000-1759953600@www.ayclogic.com
SUMMARY:7:00 PM – Python Game Development – Darin
DESCRIPTION:What We Did Today:\n\nCreated collisions for our flappy duck\nGive flappy duck the ability to jump up and fall down\nCleaned up code with TESTING variable\n\nHomework:\n\n# homework:\n# 1. modify the code here so that the duck flaps its wings. This is similar again to dragon birdie\n\n# 2. modify the hitbox of the duck so they are smaller. (crop the image)\n\n# 3. add in a game score to the top right. This is also similar to dragon birdie.\n# whenever you pass a tube\, you increment the score by one\n\nNotes:\nAll class notes can be found here: https://drive.google.com/drive/folders/1ClxGyA_3oLZtwhgN0j3BVZjpffoxMHNj?usp=sharing \nYou can reach me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/700-pm-python-game-development-darin/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251008T190000
DTEND;TZID=America/Los_Angeles:20251008T200000
DTSTAMP:20260501T174127
CREATED:20251009T030804Z
LAST-MODIFIED:20251009T030804Z
UID:31232-1759950000-1759953600@www.ayclogic.com
SUMMARY:7 PM – Intro To Python – Yitong
DESCRIPTION:Today we:\n\nReviewed the Intro to Python Quiz 1.\nStarted learning about functions without return values.\n\nHomework:\n\nDo pages 130-133. Do not do the Try-It-Yourself questions.\n\n\nEmail me for help: yitong@ayclogic.com
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-yitong-13/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251003T170000
DTEND;TZID=America/Los_Angeles:20251003T180000
DTSTAMP:20260501T174127
CREATED:20251004T031829Z
LAST-MODIFIED:20251010T173824Z
UID:31179-1759510800-1759514400@www.ayclogic.com
SUMMARY:5 PM – Intro To Python – Abigail
DESCRIPTION:Today We\n\n\n\n\nWe went over the If-Else HW.\nWe learned about user input.\n\nHomework\n(Upload your homework into your Google Drive HW folder a day before the class starts) \n\nMake a new file called “Oct3_IfElse_2_HW.py”\nIn your Python Crash Course book\, do questions 5-3 & 5-4 from page 84.\nDo question 3 from this question set (Sorry that I forget to mention this during the meeting)\n\nIf you have any questions\, email me at abigail@ayclogic.com
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-abigail-2/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20251003T170000
DTEND;TZID=America/Los_Angeles:20251003T180000
DTSTAMP:20260501T174127
CREATED:20251004T004430Z
LAST-MODIFIED:20251004T004935Z
UID:31176-1759510800-1759514400@www.ayclogic.com
SUMMARY:5 PM – Intro to Python – Darin
DESCRIPTION:What We Did Today:\n\nHad our second quiz\nFor those of you that weren’t able to make it to today’s zoom\, please work on the quiz sent to your emails before class next week. Make sure to work on it within an hour\, we can keep track of the time\n\nHomework:\nNone! \nNotes:\nAll class notes can be found here: https://drive.google.com/drive/folders/1ClxGyA_3oLZtwhgN0j3BVZjpffoxMHNj?usp=sharing \nYou can reach me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-darin-23/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250926T170000
DTEND;TZID=America/Los_Angeles:20250926T180000
DTSTAMP:20260501T174127
CREATED:20250929T204808Z
LAST-MODIFIED:20250929T204848Z
UID:31118-1758906000-1758909600@www.ayclogic.com
SUMMARY:5 PM – Intro to Python – Darin
DESCRIPTION:You will have your second quiz next week same time !!\nWhat We Did Today:\n\nReviewed how to use the random module\nWent over a couple more debugging examples\nReviewed for next weeks quiz\n\nHomework:\nCreate your Sep26_Quiz2Review.py and do the following: https://www.ayclogic.com/intro-to-python-exercises-for-quiz-2/ \nSubmit the above into the google drive when you are done! \nNotes:\nAll class notes can be found here: https://drive.google.com/drive/folders/1ClxGyA_3oLZtwhgN0j3BVZjpffoxMHNj?usp=sharing \nYou can reach me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-darin-22/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250926T170000
DTEND;TZID=America/Los_Angeles:20250926T180000
DTSTAMP:20260501T174127
CREATED:20250927T010445Z
LAST-MODIFIED:20250927T010641Z
UID:31073-1758906000-1758909600@www.ayclogic.com
SUMMARY:5 PM – Intro To Python – Abigail
DESCRIPTION:Today We\n\n\n\n\nWe went over last week’s homework.\nWe learned about If-Else statements.\n\nHomework\n(Upload your homework into your Google Drive HW folder before the class starts) \n\nMake a new file called “Sept26_IfElse_HW.py”\nCopy down the code from pages 78-81 from your Python Crash Course book.\n\nIf you have any questions\, email me at abigail@ayclogic.com
URL:https://www.ayclogic.com/event/31073/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250924T190000
DTEND;TZID=America/Los_Angeles:20250924T210000
DTSTAMP:20260501T174127
CREATED:20250929T205008Z
LAST-MODIFIED:20250929T205018Z
UID:31121-1758740400-1758747600@www.ayclogic.com
SUMMARY:7 PM – Intro To Python – Darin
DESCRIPTION:What We Did Today:\n\nHad our final exam!\nResults have been sent via email and if you need a retake you will have to schedule one with your parents.\n\nHomework:\nNone! \nNotes:\nYou can reach me at ddjapri@ayclogic.com for any questions. \nClass notes: https://drive.google.com/drive/folders/1JIaswYI_MssVSv7icxgYPd_LblYQvOVO?usp=sharing
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-darin-39/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250924T190000
DTEND;TZID=America/Los_Angeles:20250924T200000
DTSTAMP:20260501T174127
CREATED:20250925T062821Z
LAST-MODIFIED:20250928T000946Z
UID:31051-1758740400-1758744000@www.ayclogic.com
SUMMARY:7 PM – Intro To Python – Yitong
DESCRIPTION:Today we:\n\nTook the Intro to Python Quiz 1.\n\nHomework:\n\nNo homework! Review your quiz results.\n\nSince many students will be absent next week\, there will be no class on 10/1. Class will resume 10/8/2025. \n\nEmail me for help: yitong@ayclogic.com
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-yitong-12/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250919T170000
DTEND;TZID=America/Los_Angeles:20250919T180000
DTSTAMP:20260501T174127
CREATED:20250920T011600Z
LAST-MODIFIED:20250920T061747Z
UID:30981-1758301200-1758304800@www.ayclogic.com
SUMMARY:5 PM – Intro To Python – Abigail
DESCRIPTION:Today We\n\n\n\n\nWe went over last week’s homework.\nWe learned about Strings:\n\nBuilt-in String methods (ex: .upper()\, .lower()\, .title())\nNew way to combine variables into Strings (ex: f”{var1} {var2}”)\nString Shortcuts (ex: \t\, \n)\n\n\n\nHomework\n(Upload your homework into your Google Drive HW folder before the class starts) \n\nMake a new file called “Sept19_String_2_HW.py”\nOn page 25\, do questions 2-3\, 2-4\, 2-5\, and 2-6 from the “Try It Yourself” section in your Python Crash Course book.\nFinish any homework you haven’t done before the next class.\n\nPDF: page25Python \nIf you have any questions\, email me at abigail@ayclogic.com
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-abigail/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250919T170000
DTEND;TZID=America/Los_Angeles:20250919T180000
DTSTAMP:20260501T174127
CREATED:20250920T010830Z
LAST-MODIFIED:20250920T010940Z
UID:30982-1758301200-1758304800@www.ayclogic.com
SUMMARY:5 PM – Intro to Python – Darin
DESCRIPTION:What We Did Today:\n\nSaw a couple more examples on the random module to use the random functions\nLearnt debugging techniques and forms of errors\n\nHomework:\nMake a file called Sept19_RandomHW.py and submit to the google drive HW folder when you guys are done: \nFrom this page do numbers 1-4. \nNotes:\nAll class notes can be found here: https://drive.google.com/drive/folders/1ClxGyA_3oLZtwhgN0j3BVZjpffoxMHNj?usp=sharing \nYou can reach me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-darin-21/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250917T190000
DTEND;TZID=America/Los_Angeles:20250917T200000
DTSTAMP:20260501T174127
CREATED:20250918T031625Z
LAST-MODIFIED:20250924T184906Z
UID:30965-1758135600-1758139200@www.ayclogic.com
SUMMARY:7 PM – Intro To Python – Yitong
DESCRIPTION:Today we:\n\nWent over sept10_while_loop_hw2.\nReviewed using while loops.\n\nHomework:\n\nMake a file called sept17_quiz1_review.\nFinish ALL of the exercises here: https://www.ayclogic.com/intro-to-python-exercises/\n\nUse your past projects and the textbook to help you review for the quiz next week.\n\n\n\n\nEmail me for help: yitong@ayclogic.com
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-yitong-11/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250917T190000
DTEND;TZID=America/Los_Angeles:20250917T200000
DTSTAMP:20260501T174127
CREATED:20250918T030823Z
LAST-MODIFIED:20250924T231428Z
UID:30962-1758135600-1758139200@www.ayclogic.com
SUMMARY:7 PM – Intro To Python – Darin
DESCRIPTION:NEXT WEEK IS YOUR FINAL EXAM FROM 7-9 PM\nIf you haven’t submitted your python final project already\, please do so in your google drive. \nIf you have any issues\, let your parents know and we’ll find a time slot for you to do your final exam \nWhat We Did Today:\n\nReviewed Final Projects\nReviewed for Final Exam next week\n\nHomework:\nStudy for your final exam! \nNotes:\nYou can reach me at ddjapri@ayclogic.com for any questions. \nClass notes: https://drive.google.com/drive/folders/1JIaswYI_MssVSv7icxgYPd_LblYQvOVO?usp=sharing
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-darin-38/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250912T170000
DTEND;TZID=America/Los_Angeles:20250912T180000
DTSTAMP:20260501T174127
CREATED:20250913T021753Z
LAST-MODIFIED:20250913T021911Z
UID:30860-1757696400-1757700000@www.ayclogic.com
SUMMARY:5 PM – Intro To Python – Abigail
DESCRIPTION:Today We\n\n\n\n\nWe went over different Variable types and their uses.\n\nHomework\n\nCopy down the code from pages 20-23 from your Python Crash Course book.\nFrom pages 22-23\, there are these symbols “>>>” after each line of code. DON’T add them to your code.\nDo not do any code in the shell.\n\nPDF: IntroToPythonP20toP23 \nIf you have any questions\, email me at abigail@ayclogic.com
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-abigail/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250912T170000
DTEND;TZID=America/Los_Angeles:20250912T180000
DTSTAMP:20260501T174127
CREATED:20250913T005827Z
LAST-MODIFIED:20250913T005827Z
UID:30856-1757696400-1757700000@www.ayclogic.com
SUMMARY:5 PM – Intro to Python – Darin
DESCRIPTION:What We Did Today:\n\nLearnt about random module to use the random functions\n\nHomework:\nMake a file called Sept5_Magic8BallV2.py and submit to the google drive HW folder when you guys are done: \n# modify version 1 of magic8ball to use random.choice()\n# or r.choice() instead \n# put the code that does the random generation into a function\n# return the “response” in the function\, and then\n# use that function in the while loop to store the generated result\n# and print it out \nNotes:\nAll class notes can be found here: https://drive.google.com/drive/folders/1ClxGyA_3oLZtwhgN0j3BVZjpffoxMHNj?usp=sharing \nYou can reach me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-darin-20/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250910T190000
DTEND;TZID=America/Los_Angeles:20250910T200000
DTSTAMP:20260501T174127
CREATED:20250911T030622Z
LAST-MODIFIED:20250911T030708Z
UID:30796-1757530800-1757534400@www.ayclogic.com
SUMMARY:7 PM – Intro To Python – Yitong
DESCRIPTION:Today we:\n\nWent over Sept3_while_loop_hw1.\nReviewed using while loops.\nLearned about infinite loops\, break\, and flag variables.\n\nHomework:\n\nMake a file called Sept10_while_loop_hw2.\nDo the Try-It-Yourself (7-4\, 7-5\, 7-6\, 7-7) section on page 123 in your coding book.\n\n\nEmail me for help: yitong@ayclogic.com
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-yitong-10/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250910T190000
DTEND;TZID=America/Los_Angeles:20250910T200000
DTSTAMP:20260501T174127
CREATED:20250910T202318Z
LAST-MODIFIED:20250911T031159Z
UID:30786-1757530800-1757534400@www.ayclogic.com
SUMMARY:7 PM – Intro To Python – Darin
DESCRIPTION:What We Did Today:\n\nFinished the Robux System project\n\nHomework:\nYou have a one week extension for the final project! \nYOUR FINAL PROJECT IS DUE NEXT WEEK SEPTEMBER 10! \n\nFor those of you that have a drawing ready\, make 100% progress on your final project\, so be finished with creating 8 objects using the function trick we learnt in class. This is the criteria page: https://www.ayclogic.com/intro-to-python-final-project-criteria/\nSubmit this into the google drive: here when you are done!\n\n  \nDylan: Make the changes so that your drawings are in the form of a function (combine multiple makeRectangles and makeCircles into one function for one drawing) \nAvin: Submit your new drawing on paper and finish drawing everything using code we taught in class. \nLiam: Make the changes to abstract everything into a function\, and draw the words using a combination of rectangles\, circles\, or polygons \nNotes:\nYou can reach me at ddjapri@ayclogic.com for any questions. \nClass notes: https://drive.google.com/drive/folders/1JIaswYI_MssVSv7icxgYPd_LblYQvOVO?usp=sharing
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-darin-37/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250905T170000
DTEND;TZID=America/Los_Angeles:20250905T180000
DTSTAMP:20260501T174127
CREATED:20250906T010354Z
LAST-MODIFIED:20250906T011038Z
UID:30716-1757091600-1757095200@www.ayclogic.com
SUMMARY:5 PM – Intro to Python – Darin
DESCRIPTION:What We Did Today:\n\nLearnt about functions without RV\n\nHomework:\nMake a file called Sept5_FunctionsWithRV_HW.py and submit to the google drive HW folder when you guys are done: \n\nfrom https://www.ayclogic.com/list-inputs-if-and-else-loops-and-function/ do number 7. This should be similar to Sept5_FunctionWithInput.py that we did in class.\n\nNotes:\nAll class notes can be found here: https://drive.google.com/drive/folders/1ClxGyA_3oLZtwhgN0j3BVZjpffoxMHNj?usp=sharing \nYou can reach me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-darin-19/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250903T190000
DTEND;TZID=America/Los_Angeles:20250903T200000
DTSTAMP:20260501T174127
CREATED:20250904T025250Z
LAST-MODIFIED:20250904T025250Z
UID:30632-1756926000-1756929600@www.ayclogic.com
SUMMARY:7 PM – Intro To Python – Darin
DESCRIPTION:What We Did Today:\n\nReviewed final project proposals\nFinished the interactive grocery system program\nStarted the last robux program\n\nHomework:\nYOUR FINAL PROJECT IS DUE NEXT WEEK SEPTEMBER 10! \n\nFor those of you that have a drawing ready\, make 100% progress on your final project\, so be finished with creating 8 objects using the function trick we learnt in class. This is the criteria page: https://www.ayclogic.com/intro-to-python-final-project-criteria/\nSubmit this into the google drive: here when you are done!\n\nNotes:\nYou can reach me at ddjapri@ayclogic.com for any questions. \nClass notes: https://drive.google.com/drive/folders/1JIaswYI_MssVSv7icxgYPd_LblYQvOVO?usp=sharing
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-darin-36/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250903T000000
DTEND;TZID=America/Los_Angeles:20250903T000000
DTSTAMP:20260501T174127
CREATED:20250904T032201Z
LAST-MODIFIED:20250910T232924Z
UID:30636-1756857600-1756857600@www.ayclogic.com
SUMMARY:7 PM – Intro To Python – Yitong
DESCRIPTION:Today we:\n\nWent over For Loop List Hw 3.\nReviewed using for-each loops and range.\nLearned about while loops.\n\nHomework:\n\nMake a file called Sept3_while_loop_hw1.\nDo pages 117 and 121 in your coding book.\n\n\nEmail me for help: yitong@ayclogic.com
URL:https://www.ayclogic.com/event/30636/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250827T190000
DTEND;TZID=America/Los_Angeles:20250827T200000
DTSTAMP:20260501T174127
CREATED:20250828T031308Z
LAST-MODIFIED:20250828T031308Z
UID:30441-1756321200-1756324800@www.ayclogic.com
SUMMARY:7 PM – Intro To Python – Darin
DESCRIPTION:What We Did Today:\n\nReviewed final project proposals\nCreated an interactive grocery system program\n\nHomework:\nYOUR FINAL PROJECT IS DUE IN 2 WEEKS FROM NOW! \n\nFor those of you that have a drawing ready\, make 75% progress on your final project\, so be finished with creating 8 objects using the function trick we learnt in class.\nSubmit this into the google drive: here when you are done!\n\nNotes:\nYou can reach me at ddjapri@ayclogic.com for any questions. \nClass notes: https://drive.google.com/drive/folders/1JIaswYI_MssVSv7icxgYPd_LblYQvOVO?usp=sharing
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-darin-35/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
END:VCALENDAR