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:20250702T150000
DTEND;TZID=America/Los_Angeles:20250702T160000
DTSTAMP:20260506T010923
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:20250709T150000
DTEND;TZID=America/Los_Angeles:20250709T160000
DTSTAMP:20260506T010923
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:20250710T183000
DTEND;TZID=America/Los_Angeles:20250710T193000
DTSTAMP:20260506T010923
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:20250711T170000
DTEND;TZID=America/Los_Angeles:20250711T190000
DTSTAMP:20260506T010923
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:20250716T150000
DTEND;TZID=America/Los_Angeles:20250716T160000
DTSTAMP:20260506T010923
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:20250717T183000
DTEND;TZID=America/Los_Angeles:20250717T193000
DTSTAMP:20260506T010923
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:20250718T170000
DTEND;TZID=America/Los_Angeles:20250718T190000
DTSTAMP:20260506T010923
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:20250723T150000
DTEND;TZID=America/Los_Angeles:20250723T160000
DTSTAMP:20260506T010923
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:20250725T170000
DTEND;TZID=America/Los_Angeles:20250725T190000
DTSTAMP:20260506T010923
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:20250730T150000
DTEND;TZID=America/Los_Angeles:20250730T160000
DTSTAMP:20260506T010923
CREATED:20250731T045036Z
LAST-MODIFIED:20250801T235414Z
UID:29910-1753887600-1753891200@www.ayclogic.com
SUMMARY:3 PM – Python OOP – Allison
DESCRIPTION:Upload your homework as July30_main.py and water_golem.py\nCreate a new file called water_golem.py\n\nCreate a class called WaterGolem. This class will be a child of the Monster class.\nThis class will have 2 attributes: health and max_attack\nMake sure to set up using the parent’s __init__ function.\nCreate receive_magic_attack() function that will take in 2 parameters: damage_point and magic_type\n\nIf magic_type is fire:\n\nPrint: Water Golem is immune to fire attack. Therefore\, the Water Golem suffer no damage\n\n\nIf magic_type is water:\n\nPrint: Water Golem is resistance to water attack. Therefore\, your attack is halved.\nSubtract half the damage points from health\n\n\nOtherwise:\n\nCall the parent’s receive_magic_attack function\n\n\n\n\n\n\nIn your main.py\n\nIn your initialize_monsters function\, add the below to monster_dictionary:\n\nA watergolem with health 30 and max attack of 20\nA vampire (this is a Monster object) with health 45 and max attack of 15\n\n\nCreate a new function called display_strong_monster():\n\nLoop through all monsters in monster_dictionary. If a monster’s health is > 50\, print out that monster’s information using .get_info() function\n\n\nIf the user enters 4\, call display_strong_monster()\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/5-pm-python-oop-allison-7/
CATEGORIES:OOP Python,Python Class
END:VEVENT
END:VCALENDAR