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:20250309T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20251102T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250728T180000
DTEND;TZID=America/Los_Angeles:20250728T190000
DTSTAMP:20260502T003209
CREATED:20250729T183804Z
LAST-MODIFIED:20250730T011632Z
UID:29877-1753725600-1753729200@www.ayclogic.com
SUMMARY:6:00 PM – Intro to Python – Darin
DESCRIPTION:Today we did \n\nFinished the second quiz\, next week we’ll learn something new\ncode: https://drive.google.com/drive/folders/1qlUjB3gRXHSK5kRzjKzDD2qIz-OqB2bK?usp=sharing\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\nNone for this week!
URL:https://www.ayclogic.com/event/600-pm-intro-to-python-darin/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250725T170000
DTEND;TZID=America/Los_Angeles:20250725T190000
DTSTAMP:20260502T003209
CREATED:20250726T100529Z
LAST-MODIFIED:20250726T100529Z
UID:29860-1753462800-1753470000@www.ayclogic.com
SUMMARY:5 PM – Python OOP – Allison
DESCRIPTION:Upload your homework as July25_Inheritance.py\nRead and do the code from pg. 168-170.\nDo pg. 173 section 9-6 and 9-7\nOther\n\nAdd any missing parts of your class notes from our class notes (see link at bottom)\nReview the homework answers (see link at bottom)\n\n\n\nNotes\n\nYou can reach out via allison@ayclogic.com if you have any questions.\nClass notes and previous homework answers can be found here: Link to Google Drive
URL:https://www.ayclogic.com/event/5-pm-python-oop-allison-6/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250723T190000
DTEND;TZID=America/Los_Angeles:20250723T200000
DTSTAMP:20260502T003209
CREATED:20250724T075644Z
LAST-MODIFIED:20250731T020208Z
UID:29831-1753297200-1753300800@www.ayclogic.com
SUMMARY:7 PM – Intro To Python – Darin
DESCRIPTION:What We Did Today:\n\nLearnt how to make a triangle drawing function\nLearnt how to use geometry to connect different shapes\n\nHomework:\nDraw out the rest of the robot as shown here using the makeRectangle function we created in class! Upload the July23_RobotDrawing.py to the google drive here when you are finished! \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-30/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250723T190000
DTEND;TZID=America/Los_Angeles:20250723T200000
DTSTAMP:20260502T003209
CREATED:20250724T030819Z
LAST-MODIFIED:20250724T030819Z
UID:29829-1753297200-1753300800@www.ayclogic.com
SUMMARY:7 PM – Intro To Python – Yitong
DESCRIPTION:Today we:\n\nWent over tell_me_your_age_hw\nLearned about lists: storing info\, getting info\, adding info\, printing out list\, finding list length\, using info from lists\n\nHomework:\n\nMake a file called “July23_input_from_shell_hw_1” and do pages 114-116 in the book.\nMake a file called “July23_input_from_shell_hw_2” and do page 117\, #7-1 & 7-2 in the Try-It-Yourself section.\n\nEmail me for help: yitong@ayclogic.com
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-yitong-4/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250723T150000
DTEND;TZID=America/Los_Angeles:20250723T160000
DTSTAMP:20260502T003209
CREATED:20250723T230820Z
LAST-MODIFIED:20250723T230938Z
UID:29818-1753282800-1753286400@www.ayclogic.com
SUMMARY:3 PM – Python OOP – Allison
DESCRIPTION:Make sure to do the below code in your SupermarketSystem project\nUpload main2.py as July23_main2.py\nIn your main2.py file:\n\nIn print_menu:\n\nPrint by looping through everything in the menu_items dictionary. The result should be:\n\n1 – Ice Cream – $5\n2 – Fish – $4\n3 – Cookies – $6\n\n\nAfterward\, get user input by asking “Enter your selection or enter “Check Out” to checkout”\nReturn user input\n\n\nCreate a check_out function:\n\nPrint: You have purchased (shopping cart’s length) items\nCreate a variable called money and assign 0\nLoop through everything in the shopping cart\n\nIf the item is frozen food\, print: (item’s name) – remember to store inside a freezer\nIf the item is not frozen food\, just print the item’s name\nMake sure to add the item’s price to the money variable\n\n\nAfter the loop is done\, print: Thank you for your business. Please pay $(money)\n\n\nIn application_loop:\n\nCreate a variable selection. Assign it with the value that print_menu returns.\nIf user selection is check out\n\ncall the check_out method and break from loop\n\n\nIf user selection is invalid\, print invalid selection\n\nThis time\, I want you to check if it’s invalid by checking if it doesn’t exist in the menu_item keys\n\n\nIf the user selection is something else:\n\nAdd the Grocery Item object the user chose to the shopping cart (hint: use your dictionary)\n\nEx: If the user selects option 2\, the Fish Grocery Item should be added\n\n\nPrint: You have purchased {grocery object’s name} for ${grocery object’s price}\n\n\n\n\n\n\n Other\n\nAdd any missing parts of your class notes from our class notes (see link at bottom)\nReview the homework answers (see link at bottom)\n\n\n\nNotes\n\nYou can reach out via allison@ayclogic.com if you have any questions.\nClass notes and previous homework answers can be found here: Link to Google Drive
URL:https://www.ayclogic.com/event/3-pm-python-oop-allison-5/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250721T180000
DTEND;TZID=America/Los_Angeles:20250721T190000
DTSTAMP:20260502T003209
CREATED:20250722T021604Z
LAST-MODIFIED:20250722T021604Z
UID:29786-1753120800-1753124400@www.ayclogic.com
SUMMARY:6:00 PM – Intro to Python – Sebastian
DESCRIPTION:Today we did \n\nReview for final exam\nSecond quiz will be next week\, you got this!!\nThursday 6:30PM class code: https://drive.google.com/drive/folders/1qlUjB3gRXHSK5kRzjKzDD2qIz-OqB2bK?usp=sharing\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 into your Google Drive\nHomework: Please work through each exercise in the link below:\n\nhttps://www.ayclogic.com/intro-to-python-exercises-for-quiz-2/
URL:https://www.ayclogic.com/event/600-pm-intro-to-python-sebastian-7/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250721T170000
DTEND;TZID=America/Los_Angeles:20250721T180000
DTSTAMP:20260502T003209
CREATED:20250722T004920Z
LAST-MODIFIED:20250722T004920Z
UID:29783-1753117200-1753120800@www.ayclogic.com
SUMMARY:5 pm – Intro To Python – Darin
DESCRIPTION:NEXT WEEK IS YOUR FIRST QUIZ!!\nWhat We Did Today:\n\nReviewed how while loops worked\nReviewed contents for next weeks quiz\n\nHomework:\nSubmit to the google drive: here when you are finished! \n\nHomework:  Continue in your July21_Quiz1Review.py and finish the rest of the questions here: https://www.ayclogic.com/intro-to-python-exercises/\n\nNotes:\nYou can reach out to me at ddjapri@ayclogic.com if you have any questions! \nYou can find class notes here.
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-darin-12/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250718T170000
DTEND;TZID=America/Los_Angeles:20250718T190000
DTSTAMP:20260502T003209
CREATED:20250720T043129Z
LAST-MODIFIED:20250720T050840Z
UID:29779-1752858000-1752865200@www.ayclogic.com
SUMMARY:5 PM – Python OOP – Allison
DESCRIPTION:What We Did Today\n\nFinished LibrarySystem project\n\nHomework\n\nRead the July18_main_with_bug_fixes file and update your own main.py from the Library System project. See the highlights and comments to see which parts should be updated. Updates include bug fixes and small ways to improve our code.\nMake sure to do the below code in your SupermarketSystem project\nWhen you’re done with the homework\, create a folder called July18_SupermarketSystem in your Google Drive. Upload main.py and book.py there.\nCreate grocery_item.py file.\n\nCreate a Grocery Item class. It should have  3 attributes: name\, price\, and frozen_food\n\n\nIn your main.py file:\n\nCreate an empty list called shopping_cart\nCreate a menu that says:\n\nWhat do you want to purchase:\n1. Ice Cream – $5\n2. Fish – $4\n3. Cookies  – $6\n4. I am done\, checkout please\nEnter your selection:\n\n\nCreate a dictionary called menu_items\nAdd the below to menu_items dictionary:\n\nkey: “1”\, value: Grocery Item with the name Ice Cream\, price 5\, and frozen_food = True\nkey: “2”\, value: Grocery Item with the name Fish\, price 4\, and frozen_food = True\nkey: “3”\, value: Grocery Item with the name Cookies\, price 6\, and frozen_food = False\n\n\nCreate an application loop\n\nIf user selection is invalid\, print invalid selection\nIf user selection is 4\, break out of while loop\nIf the user selection is something else:\n\nAdd the Grocery Item object the user chose to the shopping cart (hint: use your dictionary)\n\nEx: If the user selects option 2\, the Eggs Grocery Item should be added\n\n\nPrint: You have purchased {grocery object’s name} for ${grocery object’s price}\n\n\n\n\n\n\n Other\n\nAdd any missing parts of your class notes from our class notes (see link at bottom)\nReview the homework answers (see link at bottom)\n\n\n\nNotes\n\nYou can reach out via allison@ayclogic.com if you have any questions.\nClass notes and previous homework answers can be found here: Link to Google Drive
URL:https://www.ayclogic.com/event/5-pm-python-oop-allison-5/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250717T183000
DTEND;TZID=America/Los_Angeles:20250717T193000
DTSTAMP:20260502T003209
CREATED:20250718T022228Z
LAST-MODIFIED:20250718T022228Z
UID:29757-1752777000-1752780600@www.ayclogic.com
SUMMARY:6:30 PM – Python OOP  – Sebastian
DESCRIPTION:Today we did \n\nFinished Monster System\nThursday 6:30PM class code: https://drive.google.com/drive/folders/1qlUjB3gRXHSK5kRzjKzDD2qIz-OqB2bK?usp=sharing\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 into your Google Drive\nHomework: \n\nAnswer questions 9-6 and 9-7 from page 173
URL:https://www.ayclogic.com/event/630-pm-python-oop-sebastian-14/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250716T190000
DTEND;TZID=America/Los_Angeles:20250716T200000
DTSTAMP:20260502T003209
CREATED:20250717T030905Z
LAST-MODIFIED:20250717T030931Z
UID:29738-1752692400-1752696000@www.ayclogic.com
SUMMARY:7 PM – Intro To Python – Yitong
DESCRIPTION:Today we:\n\nWent over if_else_hw2\nLearned about how input() only takes in Strings from the shell.\nLearned about == and !=\nLearned about “and” and “or”\n\nHomework:\n\nDo #1 only. You do not need to do the 2nd or 3rd part that talks about the “forever loop.”\n\nhttps://www.ayclogic.com/tell-me-your-age/\n\n\n\nEmail me for help: yitong@ayclogic.com
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-yitong-3/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250716T190000
DTEND;TZID=America/Los_Angeles:20250716T200000
DTSTAMP:20260502T003209
CREATED:20250717T024517Z
LAST-MODIFIED:20250717T030648Z
UID:29736-1752692400-1752696000@www.ayclogic.com
SUMMARY:7 PM – Intro To Python – Darin
DESCRIPTION:What We Did Today:\n\nLearnt how to use t.forward and t.right/t.left\nLearnt how to use functions to simplify drawing\n\nHomework:\nCreate a new function: makeTriangle \nmake sure you can change the color\, starting position\, and size \nthe triangle is an equilateral triangle \nhint: this code draws a triangle\n“””\nt.forward(100)\nt.left(120)\nt.forward(100)\nt.left(120)\nt.forward(100)\nt.left(120)\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-29/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250716T150000
DTEND;TZID=America/Los_Angeles:20250716T160000
DTSTAMP:20260502T003209
CREATED:20250717T001141Z
LAST-MODIFIED:20250717T001720Z
UID:29727-1752678000-1752681600@www.ayclogic.com
SUMMARY:3 PM – Python OOP – Allison
DESCRIPTION:What We Did Today\n\nReviewed and finished SchoolSystem project\n\nHomework\n\nYanbao:\n\nMake sure to review the SchoolSystem July16_main.py code\, understand it\, and update your code\n\n\nEveryone:\n\nMake sure to do the below code in your LibrarySystem project\nWhen you’re done with the homework\, create a folder called July16_LibrarySystem in your Google Drive. Upload main.py and book.py there.\nCreate book.py file.\n\nCreate a book class. It should have 4 attributes: title\, author\, publish_year\, and id\n\n\nIn your main.py file:\n\nReplace self.menu = “””Empty Menu””” with:\n\n1. Add book\n2. List all books\n3. Find book by name\n4. Find book by id\n5. List all old books\nEnter your selection. Enter ‘quit’ to exit:\n\n\nCreate an empty dictionary called book_dictionary\nImplement option 1\, option 2 (with dictionary)\, and option 3.\n\n\n\n\n Other\n\nAdd any missing parts of your class notes from our class notes (see link at bottom)\nReview the homework answers (see link at bottom)\n\n\n\nNotes\n\nYou can reach out via allison@ayclogic.com if you have any questions.\nClass notes and previous homework answers can be found here: Link to Google Drive
URL:https://www.ayclogic.com/event/5-pm-python-oop-allison-4/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250714T180000
DTEND;TZID=America/Los_Angeles:20250714T190000
DTSTAMP:20260502T003209
CREATED:20250715T015902Z
LAST-MODIFIED:20250715T015902Z
UID:29712-1752516000-1752519600@www.ayclogic.com
SUMMARY:6:00 PM – Intro to Python – Sebastian
DESCRIPTION:Today we did \n\nLearned about the random module\n\nrandom.int() gives a random number\nrandom.choice() gives a random element from a list\n\n\nLearned some really easy debugging techniques\n\nFinished this entire thing in 4 minutes\, really good job!\n\n\nJust want to clarify – no quiz next week\, we will just be reviewing the content that will be on the quiz to prepare\nMonday 6:00PM class code:\nhttps://drive.google.com/drive/folders/1EJ3L9sHx0pYuyJ9jnGX1o144Lki3lZWn?usp=sharing\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 into your Google Drive\nHomework: \n\nComplete all exercises specified in the Magic 8 Ball project:\nhttps://www.ayclogic.com/intro-to-python/magic-8-ball/
URL:https://www.ayclogic.com/event/600-pm-intro-to-python-sebastian-6/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250714T170000
DTEND;TZID=America/Los_Angeles:20250714T180000
DTSTAMP:20260502T003209
CREATED:20250714T234957Z
LAST-MODIFIED:20250715T005608Z
UID:29710-1752512400-1752516000@www.ayclogic.com
SUMMARY:5 pm – Intro To Python – Darin
DESCRIPTION:What We Did Today:\n\nReviewed how for loops work\nLearnt how to use the while loop\n\nHomework:\nSubmit to the google drive: here when you are finished! \n\nHomework:  Create a file July7_WhileLoopsHW2.py and do the following:\n– From the book: Page 123 TRY IT YOURSELF 7-5\, 7-6\, 7-7\n\nNotes:\nYou can reach out to me at ddjapri@ayclogic.com if you have any questions! \nYou can find class notes here.
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-darin-11/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250711T170000
DTEND;TZID=America/Los_Angeles:20250711T190000
DTSTAMP:20260502T003209
CREATED:20250712T003226Z
LAST-MODIFIED:20250712T020233Z
UID:29658-1752253200-1752260400@www.ayclogic.com
SUMMARY:5 PM – Python OOP – Allison (Darin Sub)
DESCRIPTION:What We Did Today\n\nFinished our SchoolSystem project\, adding dictionary methods for storing students\, teachers\, and classrooms.\nStarted the Library System project.\n\nHomework\n\nMake sure to do the code in your SchoolSystem project\nWhen you’re done with the homework\, re-upload June9_main.py.\nIn your main.py file:\nFinish the remaining selections (8\, 10\, 12\, 13\, 14\, 15\, 16)\nOther\n\nAdd any missing parts of your class notes from our class notes (see link at bottom)\nReview the homework answers (see link at bottom)\n\n\n\nNotes\n\nYou can reach out via allison@ayclogic.com if you have any questions.\nClass notes and previous homework answers can be found here: Link to Google Drive
URL:https://www.ayclogic.com/event/5-pm-python-oop-allison-3/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250710T183000
DTEND;TZID=America/Los_Angeles:20250710T193000
DTSTAMP:20260502T003209
CREATED:20250711T023415Z
LAST-MODIFIED:20250711T023415Z
UID:29650-1752172200-1752175800@www.ayclogic.com
SUMMARY:6:30 PM – Python OOP  – Sebastian
DESCRIPTION:Today we did \n\nContinue monster inheritance project\nLearn about inheritance\nThursday 6:30PM class code: https://drive.google.com/drive/folders/1qlUjB3gRXHSK5kRzjKzDD2qIz-OqB2bK?usp=sharing\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 into your Google Drive\nHomework:\n\nOverride the constructor of Monster to only have 2 parameters: health\, max_attack\n\ncall the parent class’ constructor and pass in “troll”\, health\, max_attack\n\n\nReplace the else’s “self.health -= damage” with a call to parent class’ take_damage()
URL:https://www.ayclogic.com/event/630-pm-python-oop-sebastian-13/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250709T190000
DTEND;TZID=America/Los_Angeles:20250709T200000
DTSTAMP:20260502T003209
CREATED:20250710T030845Z
LAST-MODIFIED:20250710T031126Z
UID:29632-1752087600-1752091200@www.ayclogic.com
SUMMARY:7 PM – Intro To Python – Yitong
DESCRIPTION:Today We Did\n\nWe finished reviewing the If-Else HW 1.\nWe learned about elif and how it is an extension of if statements.\nStarted learning about taking Input From Shell.\n\nHomework\n\nCreate july_9_if_else_hw2.py\n\nCopy the code from page 84 of the textbook and do 5-3 and 5-4 in the Try-It-Yourself section\n\n\nDo number 3 only.\n\nhttps://www.ayclogic.com/list-inputs-if-and-else-loops-and-function/\n\n\n\nEmail me for help: yitong@ayclogic.com
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-yitong-2/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250709T190000
DTEND;TZID=America/Los_Angeles:20250709T200000
DTSTAMP:20260502T003209
CREATED:20250710T002818Z
LAST-MODIFIED:20250710T034739Z
UID:29617-1752087600-1752091200@www.ayclogic.com
SUMMARY:7 PM – Intro To Python – Darin
DESCRIPTION:What We Did Today:\n\nLearnt how to use the basics of turtle module to draw with python\n\nHomework:\nIf the image is blurry below\, you can see the better quality here: https://drive.google.com/drive/folders/1vy9xiKwwPE2tFuldiIJHu_O3aY0mIIV2?usp=sharing \n \nCreate the shapes above using the t.goto() function. Use the t.begin_fill() and t.end_fill() to wrap around each shape and fill in solid color. Refer to the class notes on how to do this.\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-28/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250709T150000
DTEND;TZID=America/Los_Angeles:20250709T160000
DTSTAMP:20260502T003209
CREATED:20250709T224608Z
LAST-MODIFIED:20250709T230039Z
UID:29612-1752073200-1752076800@www.ayclogic.com
SUMMARY:3 PM – Python OOP – Allison
DESCRIPTION:What We Did Today\n\nContinued our SchoolSystem project\n\nHomework\n\nMake sure to do the code in your SchoolSystem project\nWhen you’re done with the homework\, upload main.py but rename it to Jun9_main.py in your Google Drive (don’t rename it in PyCharm!)\nIn your main.py file:\n\nIf the user enters option 2\, print out everything in the student list\nIf the user enters option 3\, ask the user for the student’s name. Find the student in the student list\, and print out the info like ({name} – {age} years old – grade {grade}).\n\nIf no student with that name exists\, print: “We couldn’t find {student’s name} in our student list”\n\n\nYou can skip if the user enters option 4 and 5 for now.\nIf the user enters option 6\, ask the user for input on any info needed to create a teacher object. Create the teacher object\, and add it to teacher_list.\n\nMake sure to create an empty teacher_list (in the initialize function)\n\n\n\n\nOther\n\nAdd any missing parts of your class notes from our class notes (see link at bottom)\nReview the homework answers (see link at bottom)\n\n\n\nNotes\n\nYou can reach out via allison@ayclogic.com if you have any questions.\nClass notes and previous homework answers can be found here: Link to Google Drive
URL:https://www.ayclogic.com/event/3-pm-python-oop-allison-4/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250707T180000
DTEND;TZID=America/Los_Angeles:20250707T190000
DTSTAMP:20260502T003209
CREATED:20250708T020815Z
LAST-MODIFIED:20250708T020815Z
UID:29562-1751911200-1751914800@www.ayclogic.com
SUMMARY:6:00 PM – Intro to Python – Sebastian
DESCRIPTION:Today we did \n\nLearn about functions\n\nParameters\nReturn values\nHow to call our functions\n\n\nLearn about how to type variables and parameters\nMonday 6:00PM class code:\nhttps://drive.google.com/drive/folders/1EJ3L9sHx0pYuyJ9jnGX1o144Lki3lZWn?usp=sharing\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 into your Google Drive\nHomework: Finish numbers 4 through 7 on the link below:\n\nhttps://www.ayclogic.com/list-inputs-if-and-else-loops-and-function/
URL:https://www.ayclogic.com/event/600-pm-intro-to-python-sebastian-5/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250707T170000
DTEND;TZID=America/Los_Angeles:20250707T180000
DTSTAMP:20260502T003209
CREATED:20250708T011145Z
LAST-MODIFIED:20250708T011153Z
UID:29559-1751907600-1751911200@www.ayclogic.com
SUMMARY:5 pm – Intro To Python – Darin
DESCRIPTION:What We Did Today:\n\nReviewed everything learnt in class\nLearnt how to use the for loop with and/or statements\n\nHomework:\nSubmit to the google drive: here when you are finished! \n\nHomework:  Create a file July7_WhileLoopsHW.py and do the following:\n– From the book:\nCopy Pages 117 and 121\nDo TIY 7-4\n\n\nNotes:\nYou can reach out to me at ddjapri@ayclogic.com if you have any questions! \nYou can find class notes here.
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-darin-10/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250702T150000
DTEND;TZID=America/Los_Angeles:20250702T160000
DTSTAMP:20260502T003209
CREATED:20250703T000842Z
LAST-MODIFIED:20250703T000842Z
UID:29542-1751468400-1751472000@www.ayclogic.com
SUMMARY:3 PM – Python OOP – Allison
DESCRIPTION:What We Did Today\n\nReviewed classes and methods\nSet up our SchoolSystem project\n\nHomework\nReminder: Our next class is on Wednesday 7/9. \nCreate a folder in your Google Drive called Jun2_SchoolSystem. Upload the files student.py\, teacher.py\, classroom.py\, staff.py\, and main.py to this folder. \n\nMake sure to do the code in your SchoolSystem project\nIn your student.py file:\n\nCreate a Student class. It will have 3 attributes: name\, age\, and grade\n\n\nCreate a teacher.py file. (Make sure it’s within the src folder)\n\nCreate a Teacher class. It will have 3 attributes: name\, age\, and subject_of_expertise\n\n\nCreate a classroom.py file. (Make sure it’s within the src folder)\n\nCreate a Classroom class. It will have 3 attributes: class_name\, class_type\, and size\n\n\nCreate a staff.py file. (Make sure it’s within the src folder)\n\nCreate a Staff class. It will have 5 attributes: name\, phone\, email\, age\, and duty\n\n\nIn your main.py file:\n\nImport the Student\, Teacher\, Classroom\, and Staff class.\n(You can look at the GroceryItem Class and see how we imported it into the GrocerySystemWithClass project)\n\n\nNote: We’re only making classes\, not objects\, for this homework.\nOther\n\nAdd any missing parts of your class notes from our class notes (see link at bottom)\nReview the homework answers (see link at bottom)\n\n\n\nNotes\n\nYou can reach out via allison@ayclogic.com if you have any questions.\nClass notes and previous homework answers can be found here: Link to Google Drive
URL:https://www.ayclogic.com/event/3-pm-python-oop-allison-3/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250627T170000
DTEND;TZID=America/Los_Angeles:20250627T190000
DTSTAMP:20260502T003209
CREATED:20250628T215816Z
LAST-MODIFIED:20250628T215935Z
UID:29524-1751043600-1751050800@www.ayclogic.com
SUMMARY:5 PM – Python OOP – Allison
DESCRIPTION:What We Did Today\n\nReviewed lists\, dictionaries\, and classes\nFinished the Grocery System with Class project\n\nHomework\nCreate a file called June27_BugFixesandReview.py and submit into the google drive when you are finished: \n\nRedo/fix this part of last week’s homework: Try It Yourself section on pg.167. I will be reviewing this next class.\n\nAnn: Redo the homework on your own\, without any online help.\nClayton:  Finish the homework and fix any bugs.\nYanbao: Finish the homework and fix any bugs\n\n\nEveryone:\n\nCreate a list called fruit_list and make it store 5 fruit names.\nCreate a class called Fruit. The class will hold attributes such as name and color. The class will have a method eat_fruit that prints: “{fruit_name} has been eaten!”. Create 2 fruit objects: strawberry and orange. Call the eat_fruit method on both objects.\nCreate a dictionary called favorite_fruit. Keys will be people’s names\, values will be a fruit object. Make 5 key-value pairs.\n\nEx: Key: Allison. Value: Blueberry (which is a fruit object\, not a string)\n\n\nOther\n\nAdd any missing parts of your class notes from our class notes (see link at bottom)\nReview the homework answers (see link at bottom)\n\n\n\n\n\nNotes\n\nYou can reach out via allison@ayclogic.com if you have any questions.\nClass notes and previous homework answers can be found here: Link to Google Drive
URL:https://www.ayclogic.com/event/5-pm-python-oop-allison-2/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250626T183000
DTEND;TZID=America/Los_Angeles:20250626T193000
DTSTAMP:20260502T003209
CREATED:20250627T023759Z
LAST-MODIFIED:20250627T023759Z
UID:29491-1750962600-1750966200@www.ayclogic.com
SUMMARY:6:30 PM – Python OOP  – Sebastian
DESCRIPTION:Today we did \n\nSmall review on inheritance\nOrganized our code into methods in monster project\nStarted the sword attack method\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 into your Google Drive and name it “JUN26_hw.py”\, just upload the entire main.py file with your changes but rename it to “JUN26_hw.py” after uploading\nHomework: Add on to sword_attack() method\n\nChoose a random number between 0 and the self.monster_object’s max_attack attribute\nRemove that amount from player.health attribute\nWe’re now able to play the game\, we can hit the monster and take damage
URL:https://www.ayclogic.com/event/630-pm-python-oop-sebastian-12/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250625T180000
DTEND;TZID=America/Los_Angeles:20250625T190000
DTSTAMP:20260502T003209
CREATED:20250626T025938Z
LAST-MODIFIED:20250710T030843Z
UID:29479-1750874400-1750878000@www.ayclogic.com
SUMMARY:7 PM - Intro To Python - Gamas
DESCRIPTION:Today We Did\n\nWe finished reviewing first week homework.\nWe finished reviewing 2nd week homework\nWe started learning about IF ELSE statements and OR operator.\n\nHomework\n\nCreate june_25_if_else_hw.py\n\ncopy codes from pages 78-81 from the textbook\, \n\n\nNo school on July 2nd because of July 4 holiday week. https://www.ayclogic.com/observed-holidays/
URL:https://www.ayclogic.com/event/7-pm-intro-to-python-gamas-24/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250620T170000
DTEND;TZID=America/Los_Angeles:20250620T190000
DTSTAMP:20260502T003209
CREATED:20250621T004907Z
LAST-MODIFIED:20250621T005833Z
UID:29427-1750438800-1750446000@www.ayclogic.com
SUMMARY:5 PM – Python OOP – Allison
DESCRIPTION:What We Did Today\n\nContinued learning about OOP\n\nHomework\nCreate a file called June20_Car_OOP.py and submit into the google drive when you are finished: \n\nYanbao:\n\nCatch up and review on 6/18’s lesson.\nUpload the below homework to your Google Drive:\n\n6/13 HW\n6/18 HW\nThis week’s HW\n\n\n\n\nEveryone:\n\nDo the Try It Yourself section on pg.162. Make sure to label each section with comments (Ex: #9-1\, #9-2\, #9-3).\nRead and do the codes in pg. 163-166. Make sure to run the code and understand it.\nAdd any missing parts of your class notes from our class notes (see link at bottom)\nReview the homework answers (see link at bottom)\n\n\n\nNotes\n\nYou can reach out via allison@ayclogic.com if you have any questions.\nClass notes and previous homework answers can be found here: Link to Google Drive
URL:https://www.ayclogic.com/event/29427/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250618T190000
DTEND;TZID=America/Los_Angeles:20250618T200000
DTSTAMP:20260502T003209
CREATED:20250619T030417Z
LAST-MODIFIED:20250619T030417Z
UID:29406-1750273200-1750276800@www.ayclogic.com
SUMMARY:7 PM – Intro To Python – Darin
DESCRIPTION:NEXT WEEK IS YOUR QUIZ 2!! DON’T BE LATE!\nWhat We Did Today:\n\nReviewed topics for the quiz\n\nHomework:\nStudy for your quiz next week! The study material can be found here. I highly recommend continuing off of the text based game to practice doing everything. \n# Contents of the Quiz2 :\n# Variables / Datatypes\n# If statements\n# Lists\n# Loops (for loops / while loops)\n\n# Functions (with/without return)\n# Debugging\n# Random (.randint and .choice)\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-27/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250618T150000
DTEND;TZID=America/Los_Angeles:20250618T160000
DTSTAMP:20260502T003209
CREATED:20250618T235301Z
LAST-MODIFIED:20250618T235301Z
UID:29398-1750258800-1750262400@www.ayclogic.com
SUMMARY:3 PM - Python OOP - Allison
DESCRIPTION:What We Did Today\n\nLearned about OOP\nCreated a Student class\n\nHomework\nCreate a file called June18_Dog_OOP.py and submit into the google drive when you are finished: \n\nRead and do the codes in pg. 158-161. Make sure you understand the code as the rest of the course will be based on these concepts.\nAdd any missing parts of your class notes from our class notes (see link at bottom)\nReview the homework answers (see link at bottom)\n\nNotes\n\nYou can reach out via allison@ayclogic.com if you have any questions.\nClass notes and previous homework answers can be found here: Link to Google Drive
URL:https://www.ayclogic.com/event/3-pm-python-oop-allison/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250616T170000
DTEND;TZID=America/Los_Angeles:20250616T180000
DTSTAMP:20260502T003209
CREATED:20250617T001907Z
LAST-MODIFIED:20250617T023611Z
UID:29374-1750093200-1750096800@www.ayclogic.com
SUMMARY:5 pm – Intro To Python – Darin
DESCRIPTION:What We Did Today:\n\nReviewed lists and for loops with lists\nLearnt how to use for loops with range() function\n\nHomework:\nSubmit to the google drive: here when you are finished! \n\nHomework:  Create a file June16_ForLoopHW2.py and do the following:\n– From the book: Page 56 TRY IT YOURSELF\n– https://www.ayclogic.com/animal-list-and-for-loop-exercises/\n\nNotes:\nYou can reach out to me at ddjapri@ayclogic.com if you have any questions! \nYou can find class notes here.
URL:https://www.ayclogic.com/event/5-pm-intro-to-python-darin-9/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20250613T170000
DTEND;TZID=America/Los_Angeles:20250613T190000
DTSTAMP:20260502T003209
CREATED:20250614T030641Z
LAST-MODIFIED:20250614T030941Z
UID:29359-1749834000-1749841200@www.ayclogic.com
SUMMARY:5 PM - Python OOP - Allison
DESCRIPTION:What We Did Today\n\nCreated PhoneBook\nCreated Grocery System with dictionary\n\nHomework\nCreate a file called June13_RobuxShoppingCart.py and submit into the google drive when you are finished: \n\nMake a copy of your RobuxShoppingCart file that you made in your Intro to Python class.\nEdit your copy so that you are using dictionaries instead of lists.\nThe only list you should have is your shopping cart. Your item inventory and prices should be dictionaries.\nYour program should work the same as it did before (ex: ask the user what they want to purchase\, break the loop when requested\, etc.)\nReview the homework answers (see link at bottom)\n\nNotes\n\nYou can reach out via allison@ayclogic.com if you have any questions.\nClass notes and previous homework answers can be found here: Link to Google Drive
URL:https://www.ayclogic.com/event/python-oop-allison/
CATEGORIES:OOP Python,Python Class
END:VEVENT
END:VCALENDAR