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:20240401T170000
DTEND;TZID=America/Los_Angeles:20240401T180000
DTSTAMP:20260604T211202
CREATED:20240402T030026Z
LAST-MODIFIED:20240402T030026Z
UID:24581-1711990800-1711994400@www.ayclogic.com
SUMMARY:5 PM - Intro To Python - Gamas
DESCRIPTION:Today We Did\n\nWe continued learning turtle.\nWe drew triangles and octagon inside forloop\nWe learned how to set background to dark blue\nWe learned how to set the pen to white.\n\nHomework\n\nContinue on april_1_shapes_with_color.py\n\nFinish the star\nAnd put the code inside a for loop and loop 10 times move up.\n\n\nCreate a new file april_1_shapes_with_color_hw.py\n\nSet the background to brown\nSet the pen color to yellow.\nDraw octagon inside for loop and loop 10 times move down.
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-gamas-16/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240401T160000
DTEND;TZID=America/Los_Angeles:20240401T170000
DTSTAMP:20260604T211202
CREATED:20240401T205844Z
LAST-MODIFIED:20240404T033900Z
UID:24577-1711987200-1711990800@www.ayclogic.com
SUMMARY:4 PM - Intro To Python - Darin
DESCRIPTION:What We Did Today:\n\nLearnt how to debug\, identified common types of errors\, and gained independence as a coder.\n\nHomework:\nContinue on your file called April1_Debugging_2.py and submit it into the google drive when you are done! \nFinish and successfully debug the rest of the code from the following website\, and make sure the output matches the specified output: https://www.ayclogic.com/fix-python-bugs-2/ \nAfter this\, make sure you finish last weeks homework: Numbers 1 and 2 from https://www.ayclogic.com/intro-to-python-exercises-for-quiz-2/\nFor this make sure for number 2 you return the value into a new variable and print using that variable as shown in the other return function examples. \nNotes:\nIf you have any questions\, feel free to email me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/4-pm-intro-to-python-darin-17/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240326T180000
DTEND;TZID=America/Los_Angeles:20240326T190000
DTSTAMP:20260604T211202
CREATED:20240327T085657Z
LAST-MODIFIED:20240327T090757Z
UID:24529-1711476000-1711479600@www.ayclogic.com
SUMMARY:6 PM - Intro To Python - Darin
DESCRIPTION:Today We Do\n\nLearnt how to make a grocery system\, where our computer keeps track of what items we bought and we imitated a simple text based game.\nReviewed the final projects\n\nHomework\nFINISH UP your final project! This means you want to finish all of the criteria shown in the final project guidelines: https://www.ayclogic.com/intro-to-python-final-project-criteria/ \nSend your code for the final project into the google drive preferably before Sunday so I can look over it! \nASK me in email if you have any questions or need help! \nYOU MUST HAVE THIS DONE BY NEXT WEEK!! \nFor Eden\, your homework is to edit the crystal shaped figure to make it smaller\, and put it inside of your final project that you have already. Make it spawn infinitely at random locations while changing its color each time! \nNotes:\nIf you have any questions\, email me at ddjapri@ayclogic.com \n  \nEXTRA TIPS:\nHere is the code for how to make a triangle \nI started with this: \n——————————————————————\nt.right(60)\nt.forward(60)\nt.right(120)\nt.forward(60)\nt.right(120)\nt.forward(60)\n—————————————————————— \nand then changed it into a function like this: \n——————————————————————\ndef makeTriangle(x\, y\, color\, length):\nt.penup()\nt.goto(x\, y)\nt.pendown() \nt.color(color) \nt.begin_fill()\n# everything else below here draws the triangle\nt.right(60)\nt.forward(length) \nfor i in range(2):\nt.right(120)\nt.forward(length)\n# to set the mouse in the original direction\nt.right(60) \nt.end_fill() \n—————————————————————— \nYou may have noticed that the triangle has equal length and is made from the top\, but if you want to angle your triangle\, you can add a heading parameter: \n——————————————————————\ndef makeTriangle(x\, y\, color\, length\, heading=0):\nt.penup()\nt.goto(x\, y)\nt.pendown() \nt.setheading(heading)\nt.color(color) \nt.begin_fill()\n# everything else below here draws the triangle\nt.right(60)\nt.forward(length) \nfor i in range(2):\nt.right(120)\nt.forward(length)\n# to set the mouse in the original direction\nt.right(60) \nt.end_fill()\n—————————————————————— \nYou can call the function like this and see what happens: \nmakeTriangle(100\, 100\, “pink”\, 100\, 30)
URL:https://www.ayclogic.com/event/6-pm-intro-to-python-darin-57/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240325T160000
DTEND;TZID=America/Los_Angeles:20240325T170000
DTSTAMP:20260604T211202
CREATED:20240325T214756Z
LAST-MODIFIED:20240327T091345Z
UID:24511-1711382400-1711386000@www.ayclogic.com
SUMMARY:4 PM - Intro To Python - Darin
DESCRIPTION:What We Did Today:\n\nLearnt how to use the random module in other programs like password generator and using random.choice to reinvent our magic 8 ball program.\n\nHomework:\nCreate a new file called Mar25_Quiz2Review.py and submit it into the google drive when you are done! \n\nDo numbers 1 and 2 from the following page: https://www.ayclogic.com/intro-to-python/star-wars-problem/https://www.ayclogic.com/intro-to-python-exercises-for-quiz-2/\n\nNotes:\nIf you have any questions\, feel free to email me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/4-pm-intro-to-python-darin-16/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240323T170000
DTEND;TZID=America/Los_Angeles:20240323T180000
DTSTAMP:20260604T211202
CREATED:20240324T012705Z
LAST-MODIFIED:20240324T012705Z
UID:24499-1711213200-1711216800@www.ayclogic.com
SUMMARY:5 PM – Intro to Python – William
DESCRIPTION:Today We Did\n\nReviewed Python Quiz 2\nLearned Turtle basics\n\nHomework\nCreate the following file: \n\nMar23_TurtleHW.py\n\nComplete the HW Exercises at https://www.ayclogic.com/event/6-pm-intro-to-python-46/\n\nUse goto(x\, y) to go to a specific x\, y coordinate. You can look at the examples here (setpos is the same as goto): https://www.geeksforgeeks.org/turtle-setpos-and-turtle-goto-functions-in-python/\nNo need to make functions for now\, but go ahead if you know how!\nMake each shape a different color\, and make sure they’re filled in.\n\n\n\n\n\nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-william-21/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240323T150000
DTEND;TZID=America/Los_Angeles:20240323T160000
DTSTAMP:20260604T211202
CREATED:20240323T231148Z
LAST-MODIFIED:20240323T231148Z
UID:24494-1711206000-1711209600@www.ayclogic.com
SUMMARY:3 PM – Intro to Python – Sebastian
DESCRIPTION:Today We Did \n\nLearned about conditions and if statements\nLearned comparison operators: ==\, !=\, <=\, >=\, <\, >\nLearned about operators that let us connect conditions: and\, or\nLearned about 3 kinds of if statements: if\, elif\, else\nSAT3PM class code: https://drive.google.com/drive/folders/1CtwIu3EczMxWU83o5ECJylqtfCmTKvb9\nAYC Logic’s observed holidays: https://www.ayclogic.com/observed-holidays/\nIn case you need anything\, feel free to email me at sebastian@ayclogic.com\n\nHomework\n\nHomework: Create a file named “MAR30_hw.py”\nComplete the book “Try it yourself” sections 2-3\, 2-4\, 2-5 and 2-6 on page 25.
URL:https://www.ayclogic.com/event/3-pm-intro-to-python-sebastian-35/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240319T180000
DTEND;TZID=America/Los_Angeles:20240319T190000
DTSTAMP:20260604T211202
CREATED:20240320T064431Z
LAST-MODIFIED:20240320T064431Z
UID:24452-1710871200-1710874800@www.ayclogic.com
SUMMARY:6 PM - Intro To Python - Darin
DESCRIPTION:Today We Do\n\nLearnt how to make things appear at random on our screen for the trees in the March12_ExtraShapes file\nMade a kaleidoscope that creates a circle infinitely but with a different size\, color\, and position/heading each time\n\nHomework\nWork on 66% of your final project! This means you want to have a function for 4 shapes ready and complete before by next week with its color. If you want to do more than 66% of completion\, then that is perfectly fine. \nASK me in email if you have any questions or need help! \nYOU MUST HAVE THIS DONE BY NEXT WEEK!! \nFor Eden\, your homework is to create a crystal shaped figure (or if you have a better idea for some shape to reappear on your screen at random) that spawns randomly on your final project drawing. \nNotes:\nIf you have any questions\, email me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/6-pm-intro-to-python-darin-56/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240318T190000
DTEND;TZID=America/Los_Angeles:20240318T200000
DTSTAMP:20260604T211202
CREATED:20240319T032613Z
LAST-MODIFIED:20240319T032613Z
UID:24445-1710788400-1710792000@www.ayclogic.com
SUMMARY:7 PM – Intro to Python – William
DESCRIPTION:Today We Did\n\nReviewed Final Exam\n\nNotes\nGamas will reach out to your parents to schedule a Final Retake. Wishing you the best of luck! \nIf you have any questions\, email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-william-31/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240318T160000
DTEND;TZID=America/Los_Angeles:20240318T170000
DTSTAMP:20260604T211202
CREATED:20240318T082628Z
LAST-MODIFIED:20240318T082628Z
UID:24424-1710777600-1710781200@www.ayclogic.com
SUMMARY:4 PM - Intro To Python - Darin
DESCRIPTION:What We Did Today:\n\nLearnt how to use the random module to get a random number from a range and how to get a random item from a list\nShowcased a couple examples of using the random module\n\nHomework:\nCreate a file called Mar18_RandomModuleHW_Magic8BallV2.py and submit it into the google drive when you are done! \n\nRecreate the magic 8 ball program from this site but using random.choice({some list}) instead of random.randint(): https://www.ayclogic.com/intro-to-python/magic-8-ball/\n\nNotes:\nIf you have any questions\, feel free to email me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/4-pm-intro-to-python-darin-15/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240316T170000
DTEND;TZID=America/Los_Angeles:20240316T180000
DTSTAMP:20260604T211202
CREATED:20240317T010804Z
LAST-MODIFIED:20240317T010804Z
UID:24410-1710608400-1710612000@www.ayclogic.com
SUMMARY:5 PM – Intro to Python – William
DESCRIPTION:Today We Did\n\nPython Quiz 2\n\nHomework\nNo homework this week! Next week we will review the quiz and start learning about Turtle in Python 🙂 \nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-william-20/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240316T150000
DTEND;TZID=America/Los_Angeles:20240316T160000
DTSTAMP:20260604T211202
CREATED:20240316T230442Z
LAST-MODIFIED:20240316T230627Z
UID:24399-1710601200-1710604800@www.ayclogic.com
SUMMARY:3 PM – Intro to Python – Sebastian
DESCRIPTION:Today We Did \n\nLearned Python variables have names (can’t have spaces)\, and values (values can have 4 different data types)\nLearned the 4 main data types are integer\, float\, string\, and boolean\nLearned about print statements\, and how to combine the data we print using:\n\ncommas\nplus operator\nformatted strings\n\n\nHow new lines work with print statements\nLearned about the 4 main operations (+\, -\, *\, /)\, and which data types they can be used on\nAYC Logic’s observed holidays: https://www.ayclogic.com/observed-holidays/\nIn case you need anything\, feel free to email me at sebastian@ayclogic.com\n\nHomework\n\nPlease submit your homework to the corresponding project’s folder in your Google Drive\nHomework: Create a file named “MAR23_string_homework.py”\n\nCopy Python code from pages 20-23 from the book.
URL:https://www.ayclogic.com/event/3-pm-intro-to-python-sebastian-34/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240312T180000
DTEND;TZID=America/Los_Angeles:20240312T190000
DTSTAMP:20260604T211202
CREATED:20240313T020742Z
LAST-MODIFIED:20240313T020742Z
UID:24312-1710266400-1710270000@www.ayclogic.com
SUMMARY:6 PM - Intro To Python - Darin
DESCRIPTION:Today We Do\n\nReviewed how setheading changes the incline of the mouse\, which in turn when used in functions changes how the functions are angled\nLearnt how to make semicircles using the extent parameter like t.circle(radius\, extent)\nLearnt how to make a tree and combine different functions for shapes together\n\nHomework\nWork on 33% of your final project! This means you want to have a function for 2 shapes ready and complete before by next week with its color. If you want to do more than 33% of completion\, then that is perfectly fine \nASK me in email if you have any questions or need help! \nYOU MUST HAVE THIS DONE BY NEXT WEEK!! \nNotes:\nIf you have any questions\, email me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/6-pm-intro-to-python-darin-55/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240311T190000
DTEND;TZID=America/Los_Angeles:20240311T210000
DTSTAMP:20260604T211202
CREATED:20240317T001339Z
LAST-MODIFIED:20240318T064140Z
UID:24403-1710183600-1710190800@www.ayclogic.com
SUMMARY:7 PM – Intro to Python – William
DESCRIPTION:Today We Did\n\nFinal Exam!\n\nHomework\nNo more homework. Good job finishing the course! 🙂 \nIf you have any questions\, email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-william-30/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240311T170000
DTEND;TZID=America/Los_Angeles:20240311T180000
DTSTAMP:20260604T211202
CREATED:20240312T004650Z
LAST-MODIFIED:20240312T004650Z
UID:24298-1710176400-1710180000@www.ayclogic.com
SUMMARY:5 PM – Intro to Python – Allison
DESCRIPTION:Today we:\n\nLearned about for loops with range\n\nHomework:\n\nUpload this homework in the Google Drive folder as Mar11_ForLoopWithRange_Homework\n\nRead and do the codes from Pg. 57-58\n\n\nContact us at gamas@ayclogic.com or allison@ayclogic.com if you have any questions or need any help.
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-allison-8/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240311T160000
DTEND;TZID=America/Los_Angeles:20240311T170000
DTSTAMP:20260604T211202
CREATED:20240311T222521Z
LAST-MODIFIED:20240311T235919Z
UID:24292-1710172800-1710176400@www.ayclogic.com
SUMMARY:4 PM - Intro To Python - Darin
DESCRIPTION:What We Did Today:\n\nStarted learning what functions with return value are and how to use them using the return keyword\nWent through a couple examples on how to use return to initialize variables\n\nHomework:\nCreate a file called Mar11_FunctionsWithoutRV_HW2.py and submit it into the google drive when you are done! \nDo the numbers in the link provided below\, and label the question as # number 8.2 # number 8.3 and so on! \n\nDo page 131 (TRY IT YOURSELF) number 8.1 and 8.2\nNumber 7 from https://www.ayclogic.com/list-inputs-if-and-else-loops-and-function/\n\nNotes:\nIf you have any questions\, feel free to email me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/4-pm-intro-to-python-darin-14/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240309T170000
DTEND;TZID=America/Los_Angeles:20240309T180000
DTSTAMP:20260604T211202
CREATED:20240310T024237Z
LAST-MODIFIED:20240310T024237Z
UID:24246-1710003600-1710007200@www.ayclogic.com
SUMMARY:5 PM – Intro to Python – William
DESCRIPTION:Today We Did\n\nReviewed Exercise #3 and #4 from Quiz 2 Prep\nCompleted 2 practice problems for Quiz 2\n\nHomework\nStudy for next week’s quiz! You can review our lesson material here: https://drive.google.com/file/d/1ivCyAL9BzlViV179qIm2EDaQIubYIT1m/ \nI recommend reviewing the following topics: \n\nRandom module\nFunctions with/without return values\nGetting input from the shell\nCreating programs using while loops\n\nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-william-19/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240305T180000
DTEND;TZID=America/Los_Angeles:20240305T190000
DTSTAMP:20260604T211202
CREATED:20240306T064205Z
LAST-MODIFIED:20240306T064334Z
UID:24201-1709661600-1709665200@www.ayclogic.com
SUMMARY:6 PM - Intro To Python - Darin
DESCRIPTION:Today We Do\n\nReviewed how to create a function for a shape (in this case a left arm)\nLearnt how to make circles using turtle\nCreated a makeCircle() function to change features of our circle that we create in turtle\nLearnt how to incline our shapes using setheading()\n\nHomework\nSubmit your photo of the final project proposal into the google drive or email me! \n\nDraw out your final project following the criteria shown: https://www.ayclogic.com/intro-to-python-final-project-criteria/\nYou can draw it with color pencils or just regular pencils (but if you use regular pencils\, label the portions/shapes with a color)\nTake a photo of it and send it to me for approval.\nYOU MUST HAVE THIS DONE BY NEXT WEEK!!\n\nNotes:\nIf you have any questions\, email me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/24201/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240304T190000
DTEND;TZID=America/Los_Angeles:20240304T200000
DTSTAMP:20260604T211202
CREATED:20240305T042145Z
LAST-MODIFIED:20240305T042145Z
UID:24181-1709578800-1709582400@www.ayclogic.com
SUMMARY:7 PM – Intro to Python – William
DESCRIPTION:Today We Did\n\nReviewed code for the final — uploaded to Google Drive\n\nHomework\n\nStudy for the final! Make sure to understand everything we went over today\, and review the following topics:\n\nHow to get input from shell\nHow to create simple functions\nHow to generate random numbers.\nHow to create a medium level Python program.\n\n\nProject Corrections\n\nFinal deadline for project revisions has been extended to this Saturday\, March 9th! Please email me if you have decided to make revisions so I can review them.\nYou can review the requirements here: https://www.ayclogic.com/intro-to-python-final-project-criteria/\n\n\n\nIf you have any questions\, email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-william-29/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240304T170000
DTEND;TZID=America/Los_Angeles:20240304T180000
DTSTAMP:20260604T211202
CREATED:20240306T092327Z
LAST-MODIFIED:20240306T092327Z
UID:24208-1709571600-1709575200@www.ayclogic.com
SUMMARY:5 PM – Intro to Python – Allison
DESCRIPTION:Today we:\n\nContinued learning about for loops\n\nHomework:\n\nUpload this homework in the Google Drive folder as Mar4_ForLoop_Pt2_Homework\n\nFollow the instructions in: https://www.ayclogic.com/animal-list-and-for-loop-exercises/\nRead and do the codes from Pg. 56 Try It Yourself section\n\n\nContact us at gamas@ayclogic.com or allison@ayclogic.com if you have any questions or need any help.
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-allison-7/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240304T160000
DTEND;TZID=America/Los_Angeles:20240304T170000
DTSTAMP:20260604T211202
CREATED:20240305T023822Z
LAST-MODIFIED:20240305T023908Z
UID:24166-1709568000-1709571600@www.ayclogic.com
SUMMARY:4 PM - Intro To Python - Darin
DESCRIPTION:What We Did Today:\n\nStarted learning what functions are and how they are significant\nLearnt how to create and use functions without return values\nLearnt how parameters/arguments for a function works\n\nHomework:\nCreate a file called FunctionsWithoutRV_HW1.py and submit it into the google drive when you are done! \nDo the numbers in the link provided below\, and label the question as # number 4 # number 5 and so on! \n\nhttps://www.ayclogic.com/list-inputs-if-and-else-loops-and-function/\n^ numbers 4-6\n\nNotes:\nIf you have any questions\, feel free to email me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/4-pm-intro-to-python-darin-13/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240302T170000
DTEND;TZID=America/Los_Angeles:20240302T180000
DTSTAMP:20260604T211202
CREATED:20240303T022152Z
LAST-MODIFIED:20240303T022152Z
UID:24148-1709398800-1709402400@www.ayclogic.com
SUMMARY:5 PM – Intro to Python – William
DESCRIPTION:Today We Did\n\nDebugged FixingPythonBugs2.py\nReviewed Exercise #1 and #2 from Quiz 2 Prep\n\nExplained return values from functions\n\n\n\nHomework\nContinue working on Quiz2Prep.py! Try your best to attempt all the exercises. \n\nYou can find the problems at: https://www.ayclogic.com/intro-to-python-exercises-for-quiz-2/\n\nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-william-18/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240227T180000
DTEND;TZID=America/Los_Angeles:20240227T190000
DTSTAMP:20260604T211202
CREATED:20240228T083740Z
LAST-MODIFIED:20240304T171744Z
UID:24106-1709056800-1709060400@www.ayclogic.com
SUMMARY:6 PM - Intro To Python - Darin
DESCRIPTION:Today We Do\n\nContinued on the RobotBuilder project\, where we further connected the shapes together using a bit of math and logic.\nIntroduced creating a function for creating the right arm\, where we used more x and y parameters for the function as a way to change the location of the arm every time we call the makeRightArm() function\n\nHomework\n\nContinue on the same file called Feb20_RobotBuilder.py\, and submit it into the google drive when you finish\nCreate the makeLeftArm() function that takes in 2 parameters\, x and y\na) The very first thing you want to do is make the left arm without using a function.\nb) After you’ve made it work without a function\, you want to turn into a function with these 2 parameters x and y so that we can specify where we want our left arm to be made.\nc) In order to make this work\, you need to use x and y as the starting coordinates of the first shape being made inside of the function (as seen in with the makeRightHand() function\nd) Every other shape that is made inside of the function must use\n(x + or – {the difference between the first shape’s value and the current shape})\ne) Now that you have a function for the left arm\, go ahead and make 2 left arms similar to the 2 right arms.\n\n\nan example of how to turn any shape into a function: \ncode below draws a + shape:\nmakeRectangle(0\, 0\, “blue”\, 10\, 40)\nmakeRectangle(-15\, -15\, “blue”\, 40\, 10) \nIf we want to make it a function\, it would look like this: \ndef makePlus(x\, y):\n   makeRectangle(x\, y\, “blue”\, 10\, 40)\n   makeRectangle(x-15\, y-15\, “blue”\, 40\, 10) \nSee that in the example above\, we made every other shape after the first shape inside of the function use x and y added/subtracted with the difference between the first shape coordinate and the next shape coordinate from the original code before it became a function. \nNotes:\nIf you have any questions\, email me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/6-pm-intro-to-python-54/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240226T190000
DTEND;TZID=America/Los_Angeles:20240226T200000
DTSTAMP:20260604T211202
CREATED:20240227T060146Z
LAST-MODIFIED:20240227T060146Z
UID:24080-1708974000-1708977600@www.ayclogic.com
SUMMARY:7 PM – Intro to Python – William
DESCRIPTION:Today We Did\n\nFinished Robux Catalog\n\nBuy more Robux\nCheckout\n\n\n\nHomework\nCreate the following file: \n\nFeb26_FinalPrep.py\n\nComplete the exercises at: https://www.ayclogic.com/intro-to-python-exercises-for-quiz-2/\n\n\n\nIf you have any questions\, email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-william-28/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240226T170000
DTEND;TZID=America/Los_Angeles:20240226T180000
DTSTAMP:20260604T211202
CREATED:20240227T013658Z
LAST-MODIFIED:20240228T001346Z
UID:24072-1708966800-1708970400@www.ayclogic.com
SUMMARY:5 PM – Intro to Python – Allison
DESCRIPTION:Today we:\n\nContinued learning about lists\, if else\, and user input\nBegan learning about for loops\n\nHomework:\n\nUpload this homework in the Google Drive folder as Feb26_List_Pt2_Homework\n\nRead and do the codes from Pg. 42\, Try It Yourself sections 3-4\, 3-5\, and 3-6\n\nMake sure to read the book pages\n\n\n\n\nUpload this homework in the Google Drive folder as Feb26_ForLoop_Pt1_Homework\n\nRead and do the codes from Pg. 54 and 55\n\nMake sure to read the book pages\n\n\n\n\nContact us at gamas@ayclogic.com or allison@ayclogic.com if you have any questions or need any help.
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-allison-6/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240226T160000
DTEND;TZID=America/Los_Angeles:20240226T170000
DTSTAMP:20260604T211202
CREATED:20240227T001145Z
LAST-MODIFIED:20240227T001145Z
UID:24068-1708963200-1708966800@www.ayclogic.com
SUMMARY:4 PM - Intro To Python - Darin
DESCRIPTION:What We Did Today:\n\nWe finished our first quiz of the class\n\n  \nHomework:\n\nNone\n\n  \nNotes:\nIf you have any questions\, feel free to email me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/4-pm-intro-to-python-darin-12/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240224T170000
DTEND;TZID=America/Los_Angeles:20240224T180000
DTSTAMP:20260604T211202
CREATED:20240225T021518Z
LAST-MODIFIED:20240225T021518Z
UID:24040-1708794000-1708797600@www.ayclogic.com
SUMMARY:5 PM – Intro to Python – William
DESCRIPTION:Today We Did\n\nDebugged FixingPythonBugs.py\nReviewed common Python errors\n\nHomework\nCreate the following files: \n\nFixingPythonBugs2.py\n\nCopy and paste the code from the following website & fix errors until it runs correctly without errors: https://www.ayclogic.com/fix-python-bugs-2/\n\n\nQuiz2Prep.py\n\nComplete the exercises at: https://www.ayclogic.com/intro-to-python-exercises-for-quiz-2/\n\n\n\nIf you have any questions\, please email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-william-17/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240220T180000
DTEND;TZID=America/Los_Angeles:20240220T190000
DTSTAMP:20260604T211202
CREATED:20240221T052749Z
LAST-MODIFIED:20240221T052749Z
UID:24002-1708452000-1708455600@www.ayclogic.com
SUMMARY:6 PM - Intro To Python - Darin
DESCRIPTION:Today We Do\n\nLearnt to use t.forward() and t.right() to create shapes instead of t.goto()\nLearnt how to use loops to simplify code\nLearnt how to make a polygon\nLearnt how to use functions to create shapes\nLearnt how to add function parameters for the shape creation\n\nHomework\nMAIN HOMEWORK: \n\nContinue on the same file called Feb20_RobotBuilder.py\nCreate the head of the robot as shown below\nFigure out how to connect the rectangles together by math\, like what the starting point (the x and y coordinates) of the shape should be when trying to connect them.\nMake the head\, the eyes\, as well as the pupils for the robot.\nSee the image below for reference:\n\n\n  \nFOR EXTRA PRACTICE: \n\nCreate a new file called Feb20_TurtleExtraPractice.py\nCreate all the images as shown below\, but this time use functions the same way we created the makeRectangle function in class today (with the parameters)\nLook at this image for your coordinates guidance:\n\n\n\n\n\n  \nNotes:\nIf you have any questions\, email me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/6-pm-intro-to-python-darin-54/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240219T190000
DTEND;TZID=America/Los_Angeles:20240219T200000
DTSTAMP:20260604T211202
CREATED:20240220T040928Z
LAST-MODIFIED:20240220T040928Z
UID:23964-1708369200-1708372800@www.ayclogic.com
SUMMARY:7 PM – Intro to Python – William
DESCRIPTION:Today We Did\n\nReviewed Final Projects\nContinued working on Robux Catalog\n\nFinished handle_transaction()\nStarted implementing user selection\n\n\n\nHomework\nFinal deadline for project corrections is next Monday\, February 26th! Be sure to make use of functions 🙂 \nYou can review the requirements here: https://www.ayclogic.com/intro-to-python-final-project-criteria/ \nIf you have any questions\, email me at williamsmith@ayclogic.com.
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-william-27/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240219T170000
DTEND;TZID=America/Los_Angeles:20240219T180000
DTSTAMP:20260604T211202
CREATED:20240220T084723Z
LAST-MODIFIED:20240220T085141Z
UID:23981-1708362000-1708365600@www.ayclogic.com
SUMMARY:5 PM – Intro to Python – Allison
DESCRIPTION:Today we:\n\nLearned about lists\n\nHomework:\n\nUpload this homework in the Google Drive folder as Feb19_ListHomework:\n\nDo the exercise from https://www.ayclogic.com/tell-me-your-age/\nRead and do the codes from Pg. 38-41\n\nMake sure to read the book pages\n\n\n\n\nContact us at gamas@ayclogic.com or allison@ayclogic.com if you have any questions or need any help.
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-allison-5/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240219T160000
DTEND;TZID=America/Los_Angeles:20240219T170000
DTSTAMP:20260604T211202
CREATED:20240219T225558Z
LAST-MODIFIED:20240220T044546Z
UID:23957-1708358400-1708362000@www.ayclogic.com
SUMMARY:4 PM - Intro To Python - Darin
DESCRIPTION:WE HAVE OUR QUIZ NEXT WEEK ON FEBRUARY 26!!\nWhat We Did Today:\n\nReviewed how to use while loops\nDistinguished between while loops and for loops\nStarted on the quiz review\nReviewed all the topics learnt so far\n\nHomework:\nContinue in your file called Feb19_Quiz1Review.py and submit the file into the google drive when you are finished! \n\nFinish number 1-5\, as well as number 10 in the following https://www.ayclogic.com/intro-to-python-exercises/\nReview all the numbers including number 6 until number 9 for the quiz.\n\nWhat you need to study:\n1. Know what print(f””) does\n2. Know your data types – Strings\, Integers\, Floats\n3. How to typecast (convert to integer or convert to string) – int() or str()\n4. How to use and/or in if statements\n5. How to make a list\, and use lists\n6. How to use a for loop and lists\n7. How to use a while loop and if statements inside \nNotes:\nIf you have any questions\, feel free to email me at ddjapri@ayclogic.com
URL:https://www.ayclogic.com/event/4-pm-intro-to-python-darin-11/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
END:VCALENDAR