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:20230312T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20231105T090000
END:STANDARD
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:20240320T190000
DTEND;TZID=America/Los_Angeles:20240320T200000
DTSTAMP:20260506T031650
CREATED:20240323T205454Z
LAST-MODIFIED:20240323T205454Z
UID:24488-1710961200-1710964800@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Sebastian
DESCRIPTION:Today We Did \n\nAdded remaining logic for monster system project\nOnly need to fix bugs for next class\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: Page 173 in the book\, sections 9-6 and 9-7.
URL:https://www.ayclogic.com/event/7-pm-python-oop-sebastian-11/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240314T163000
DTEND;TZID=America/Los_Angeles:20240314T173000
DTSTAMP:20260506T031650
CREATED:20240318T064601Z
LAST-MODIFIED:20240318T064601Z
UID:24422-1710433800-1710437400@www.ayclogic.com
SUMMARY:4:30pm – Python OOP – Roland
DESCRIPTION:Today We Did \n\nSetup SchoolSystem project on local computer Continued working on SchoolSystem Project\n\nFind a teacher\nList all teachers dictionaries\nList all students dictionaries\nAdd staff\n\n\n\nHomework \nContinue working on the SchoolSystem project. Try to finish as much as you can. Implement the following at the least: \n\nList all staffs using List\nList all staffs that is younger than 20\nFind a staff by name using List\nFind staff using Dictionary\n\nIf you have any questions\, feel free to email me at rolandyang@ayclogic.com
URL:https://www.ayclogic.com/event/430pm-python-oop-roland-4/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240313T190000
DTEND;TZID=America/Los_Angeles:20240313T200000
DTSTAMP:20260506T031650
CREATED:20240314T030333Z
LAST-MODIFIED:20240314T030333Z
UID:24338-1710356400-1710360000@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Sebastian
DESCRIPTION:Today We Did \n\nLearned about how to call methods from a parent class\, while inside a child class using super()\nContinued building out our monster adventure game\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: 9-6 and 9-7 from the book\, page 173
URL:https://www.ayclogic.com/event/7-pm-python-oop-sebastian-10/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240306T190000
DTEND;TZID=America/Los_Angeles:20240306T200000
DTSTAMP:20260506T031650
CREATED:20240307T040120Z
LAST-MODIFIED:20240307T040120Z
UID:24210-1709751600-1709755200@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Sebastian
DESCRIPTION:Today We Did \n\nFirst reviewed what 2 things all classes have\, so that we really can understand what it means to inherit a class:\n\nMethods (functions inside of classes)\nAttributes (variables shared between methods)\n\n\nLearned that inheritance is when a child class inherits every method from a parent class\nLearned how child classes can override methods from a parent class to become unique\, and have special method behavior\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\, and name the file MAR6_inheritance_hw.py\nHomework: Copy code from pages 168 – 170
URL:https://www.ayclogic.com/event/7-pm-python-oop-sebastian-9/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240228T190000
DTEND;TZID=America/Los_Angeles:20240228T200000
DTSTAMP:20260506T031650
CREATED:20240302T230519Z
LAST-MODIFIED:20240302T230519Z
UID:24141-1709146800-1709150400@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Sebastian
DESCRIPTION:Today We Did \n\nBegan Monster Inheritance project\nCreated basic MonsterSystem class\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 come to class with the following written down\, ready to explain to me (you don’t have to submit this anywhere\, but please have it ready before class)\n\nHow do you add to a dictionary? For example\, if I have the following code\, how would I map the key “cat” to the value “Momo”?\n\npet_to_name = {"dog": "Spike"}\n\n\nHow do I make an instance of a class (an object)? For example\, if I had the following code\, how could I make an instance of the Animal class?\n\nclass Animal:\n    \n    def __init__(self\, name):\n        self.name = name\n        \n    def get_info(self):\n        return self.name\n\n\nHow do I call an object’s method? After you made an instance of the Animal class (above)\, show me how we can call the get_info() method\, and print its return value.
URL:https://www.ayclogic.com/event/7-pm-python-oop-sebastian-8/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240221T190000
DTEND;TZID=America/Los_Angeles:20240221T200000
DTSTAMP:20260506T031650
CREATED:20240226T151925Z
LAST-MODIFIED:20240226T151925Z
UID:24062-1708542000-1708545600@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Sebastian
DESCRIPTION:Today We Did \n\nFinished Grocery System project\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\nCome into class ready to answer the following questions\n\nWhat 2 things are dictionaries made out of?\nHow do we create a dictionary which maps “name” to your name?\nHow do we create an empty dictionary first\, which then maps “name” to your name?
URL:https://www.ayclogic.com/event/7-pm-python-oop-sebastian-7/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240214T190000
DTEND;TZID=America/Los_Angeles:20240214T200000
DTSTAMP:20260506T031650
CREATED:20240215T035851Z
LAST-MODIFIED:20240215T035851Z
UID:23902-1707937200-1707940800@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Sebastian
DESCRIPTION:Today We Did \n\nReviewed the idea of object oriented programming\, and how we’re going to use it for our Supermarket and GroceryItem class\nCreated print_menu method\nAdded multiple grocery item objects to inventory dictionary\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: Inside our main.py\, in the application_loop method:\n \n\nCreate an infinite loop\nPrint out menu for user\nAsk user for user input\, asking “Enter your selection”
URL:https://www.ayclogic.com/event/7-pm-python-oop-sebastian-6/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240207T190000
DTEND;TZID=America/Los_Angeles:20240207T200000
DTSTAMP:20260506T031650
CREATED:20240209T044907Z
LAST-MODIFIED:20240209T044907Z
UID:23805-1707332400-1707336000@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Sebastian
DESCRIPTION:Today We Did \n\nFinished library system project\nBegan school system project\nRecreated grocery item class\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: Recall the print_menu() function in the old code (main_v1.py in the Google Drive). We will be creating our own version of it using OOP for the homework.\n\nAsk the user what they want to purchase using a normal print statement\nLoop through each grocery item inside the inventory attribute (there aren’t any yet\, but we’ll add grocery item objects next class).\nPrint out each grocery item’s name and price in the loop.\nAsk for user input\, asking “Enter your selection: ” outside of the loop.\nReturn user input\n\n\nThe homework looks like a lot\, but it’s almost identical to the content in the print_menu() from our original main_v1.py\, so please use the file in our Google Drive to help you.
URL:https://www.ayclogic.com/event/7-pm-python-oop-sebastian-5/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240124T190000
DTEND;TZID=America/Los_Angeles:20240124T200000
DTSTAMP:20260506T031650
CREATED:20240125T193708Z
LAST-MODIFIED:20240125T193708Z
UID:23622-1706122800-1706126400@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Sebastian
DESCRIPTION:Today We Did \n\nAdd a classroom\nList all classrooms using a list\nList all classrooms using a dictionary\nFind classrooms using dictionary\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: Finish our find_classroom_using_list() method\n\nAsk the user for a subject they want to find\nLook at each object inside our classroom_list attribute\, and check if it has a subject attribute with the same value as what the user asked for\n\nIf there is a match\, then print out the classroom info and end the function (remember how we exit out of a function!).\n\n\nIf we looked at every single classroom in our list\, and none of them have a matching name\, tell the user that the classroom doesn’t exist.
URL:https://www.ayclogic.com/event/7-pm-python-oop-sebastian-3/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240122T170000
DTEND;TZID=America/Los_Angeles:20240122T180000
DTSTAMP:20260506T031650
CREATED:20240123T030349Z
LAST-MODIFIED:20240123T030358Z
UID:23570-1705942800-1705946400@www.ayclogic.com
SUMMARY:5 PM - Python OOP - Darin
DESCRIPTION:Today We Did\n\nContinued the Monster Inheritance project\, where now we are able to fight the monsters by playing as a character we created by making a self.player_name and self.player_health attribute in the monster_system file.\nCreated the functionality to do sword damage to the monsters of our choosing\, and reduce their health.\n\nHomework\nSTART and complete the final practice quiz shared to your email (I also shared it in the class in the chat)\, it will take about one hour\, and remember that the final itself will NOT be open-book. (if you don’t have the quiz\, or can’t access it\, let me know in the email as soon as possible) \nRe-Upload monster.py\, troll.py\, dragon.py\, water_golem.py\, and monster_system.py into your folder called MonsterInheritance on the google drive. \n\nFollow the same instructions from the previous week’s homework instructions (https://www.ayclogic.com/event/5-pm-python-oop-dari/)\, and if your program still doesn’t work\, ask me questions on email on your errors\, and refer to the google drive where I upload the class notes (email me asking for the link if you don’t have the link)\nIn the code for each inherited monster class\, use this instead:\nsuper().receive_magic_attack(damage_point\, magic_type)\nBecause the parent method is supposed to take only one parameter.\nI will email both of you two on the errors in your program by tomorrow midnight (23 January)\, so check your email afterwards!\n\nNotes\nIf you have any questions\, email me at ddjapri@ayclogic.com !!
URL:https://www.ayclogic.com/event/5-pm-python-oop-dari-2/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240117T190000
DTEND;TZID=America/Los_Angeles:20240117T200000
DTSTAMP:20260506T031650
CREATED:20240118T035839Z
LAST-MODIFIED:20240118T035839Z
UID:23513-1705518000-1705521600@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Sebastian
DESCRIPTION:Today We Did \n\nFind teacher using list\nFind teacher using dictionary\nCreated new classroom class\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: Make 2 classroom objects with subjects/room_number/grade attributes:\n\nAstrology\, 74927\, [1\,2\,3\,4\,5\,6\,7\,8]\nPhilosophy\, 74928\, [1\,2\,3\,4\,5\,6\,7\,8\,9]\n\n\nAfter creating the objects\, add them to the classroom list & dictionary\n\nSimply append objects to list like usual\nFor dictionaries\, please use the subject as the key\, and the object as the value.
URL:https://www.ayclogic.com/event/7-pm-python-oop-sebastian-2/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240115T190000
DTEND;TZID=America/Los_Angeles:20240115T200000
DTSTAMP:20260506T031650
CREATED:20240116T051500Z
LAST-MODIFIED:20240116T051500Z
UID:23461-1705345200-1705348800@www.ayclogic.com
SUMMARY:7 PM - Python OOP - Gamas
DESCRIPTION:Today We Did\n\nWe went over Driver System practice test and went over the solution.\nThe DriverSystem solution can be found in https://drive.google.com/drive/folders/1sp1a3f7XtnA0O4OiyDVsoN5LXIRV6Yxo?usp=sharing\n\nHomework\n\nNext week 01/22 is a 2 hour final test. The final test is open book and you can use any of the codes you have done in the class. But you cannot use any of the codes from the Internet. If you use something that is outside what we have learned from the class\, you will get 0.\nPlease study\n\nDriver System\nSchool System\nMonster Inheritance\nLibrary System
URL:https://www.ayclogic.com/event/7-pm-python-oop-gamas-15/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240115T170000
DTEND;TZID=America/Los_Angeles:20240115T180000
DTSTAMP:20260506T031650
CREATED:20240117T070948Z
LAST-MODIFIED:20240117T070955Z
UID:23505-1705338000-1705341600@www.ayclogic.com
SUMMARY:5 PM - Python OOP - Darin
DESCRIPTION:Today We Did\n\nContinued the Monster Inheritance project\, where now we are able to fight the monsters by playing as a character we created by making a self.player_name and self.player_health attribute in the monster_system file.\nCreated the functionality to do sword damage to the monsters of our choosing\, and reduce their health.\n\nHomework\nRe-Upload monster.py\, troll.py\, dragon.py\, water_golem.py\, and monster_system.py into your folder called MonsterInheritance on the google drive. \n\nContinue on your MonsterInheritance Project\, finishing the magic attacks as shown below:\n\nYou need to edit the individual special monster classes\, where each monster is resistant to different types of magic. For reference:\nDragon is immune to fire\nTroll is immune to earth\nWater Golem immune is resistant to water\nIn the else statement inside of the receive_magic_attack() method of each special monster class\, use this:\nsuper().receive_magic_attack(damage_point\, magic_type)\ninstead of self.health -= magic_attack \nThis allows you to call the method of the parent class (so you would call the normal receive_magic_attack from the parent Monster class)\nAfter this\, make it so that the player gets attacked in the magic_attack method of the MonsterSystem class\, similar to in the sword_attack() method. Add an else statement to show if the magic attack selection is invalid.\nFinally\, add some code in the application_loop() method to print out a message saying that the monster has just killed you if the player health is less than 0.\n\n\n  \nNotes\nIf you have any questions\, email me at ddjapri@ayclogic.com !!
URL:https://www.ayclogic.com/event/5-pm-python-oop-dari/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240110T190000
DTEND;TZID=America/Los_Angeles:20240110T200000
DTSTAMP:20260506T031650
CREATED:20240113T230911Z
LAST-MODIFIED:20240113T230911Z
UID:23437-1704913200-1704916800@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Sebastian
DESCRIPTION:Today We Did \n\nReviewed how to iterate through dictionaries\nSearched through dictionaries to find each student name’s corresponding object\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 the teacher methods we discussed in class\n\nThe method list_all_teachers_list should list all the teachers by looping through a list\nThe method list_all_teachers_dictionary should list all the teachers by looping through a dictionary
URL:https://www.ayclogic.com/event/7-pm-python-oop-sebastian/
CATEGORIES:OOP Python
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240108T170000
DTEND;TZID=America/Los_Angeles:20240108T180000
DTSTAMP:20260506T031650
CREATED:20240109T025427Z
LAST-MODIFIED:20240111T014306Z
UID:23343-1704733200-1704736800@www.ayclogic.com
SUMMARY:5 PM - Python OOP - Darin
DESCRIPTION:Today We Did\n\nReviewed how inheritance works through try it yourself number 9-7\nContinued the MonsterInheritance project\, creating the initial menu pop up as well as started on using inheritance for creating some of the monsters.\n\nHomework\nRe-Upload monster.py and monster_system.py into your folder called MonsterInheritance on the google drive. \n\nContinue on your MonsterInheritance Project\, by creating the other two classes that inherit from the Monster class. Create the Troll class as well as the WaterGolem class. These classes are similar to the Dragon class\, and think about how you create the constructor method\, where you directly give it its first parameter as in the Dragon class. (note: for the WaterGolem class\, use “Water Golem” for the species of the monster)\nComplete the initialize_monsters() method from the MonsterSystem class file by adding the Troll and the WaterGolem into the system.\nCreate some error handling code for if the user inputs a wrong selection by adding an else statement in the application_loop() method in the MonsterSystem class.\n\nThis is what the program looks like after the user enters 2 (which calls the display_all_monsters() method in the application_loop() method):\nThis is what the program looks like after the user enters 1:\n\n\nNotes\nIf you have any questions\, email me at ddjapri@ayclogic.com !!
URL:https://www.ayclogic.com/event/5-pm-python-oop-darin/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240102T180000
DTEND;TZID=America/Los_Angeles:20240102T190000
DTSTAMP:20260506T031650
CREATED:20240103T050059Z
LAST-MODIFIED:20240103T050059Z
UID:23263-1704218400-1704222000@www.ayclogic.com
SUMMARY:6 PM - Python OOP - Shawn
DESCRIPTION:Today We Did\n\nWe continued with Monster Inheritance project.\nWe utilized dictionary to translate from “1” to “fire”\, “2” to “water” etc. And we utilized another dictionary to translate from “1” to 15 (fire magic damage)\, “2” to 15 (water magic damage) etc.\nWe added code to make the magic attack to work.\n\nHomework\n\nIf you were not able to copy the codes completely\, the Monster Inheritance codes can be found in https://drive.google.com/drive/u/0/folders/1zuuNL_dnmRkxMaInRAyDHwwyWPLXiYEr\nInside main.py\, the play_adventure method is too big now\, almost 50 lines of codes. We need to break down this big method into smaller methods.\n\nYou need to move sword attack related codes from play_adventure method into its own sword_attack method.\nAnd you need to move magic_attack related codes from play_adventure method into its own magic_attack method.\n\n\nUpload your codes into google drive.\nNext week we are going to learn how to do monster special behavior using inheritance.
URL:https://www.ayclogic.com/event/6-pm-python-oop-shawn-29/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231221T160000
DTEND;TZID=America/Los_Angeles:20231221T170000
DTSTAMP:20260506T031650
CREATED:20231222T032147Z
LAST-MODIFIED:20231222T032147Z
UID:23169-1703174400-1703178000@www.ayclogic.com
SUMMARY:3:45 PM – Python OOP – Allison
DESCRIPTION:Today we:\n\nStarted the Grocery System – List project\n\nImportant Reminders:\n\nTo celebrate Christmas\, the school will be closed from Sunday 12/24 – Sunday 12/31. There is no class next week. Our next class will be on Thursday 1/4.\n\nHomework:\n\nUpload this homework in the Google Drive folder as Dec21_DictionaryLooping:\n\nRead and do the codes from Pg. 100-101\n\nNote: To help you for the top code on Pg. 100\, add this code below:\n\nuser_0 = {\n‘username’: ‘efermi’\,\n‘first’: ‘enrico’\,\n‘last’: ‘fermi’\,\n}\n\n\n\n\nDo the “TRY IT YOURSELF” section on Pg. 104-105\n\n\nUpload this homework in the Google Drive folder as Dec21_PhoneBook:\n\nCreate the Phone Book Dictionary Program\nSee instructions for the program here: https://www.ayclogic.com/phone-book-system/\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/345-pm-python-oop-allison/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231218T170000
DTEND;TZID=America/Los_Angeles:20231218T180000
DTSTAMP:20260506T031650
CREATED:20231220T083355Z
LAST-MODIFIED:20240108T014029Z
UID:23144-1702918800-1702922400@www.ayclogic.com
SUMMARY:5 PM - Python OOP - Darin
DESCRIPTION:Today We Did\n\nLearnt the new topic on inheritance\, and how it helps reduce code duplication\nFinished try it yourself number 9-6\, further learning how inheritance works with code\, how to use super().__init__(self\, …\, …) to initialize the attributes of the new class.\nStarted on the Monster Inheritance project.\n\nHomework\nUpload Dec18_Inheritance_HW.py into the google drive when finished. Upload monster.py and monster_system.py into a file called MonsterInheritance on the google drive. \n\nContinue on your file called Dec18_Inheritance_HW.py and finish Try It Yourself – pg.173\, 9-7\nStart creating the MonsterInheritance Project\, and start with 2 files\, monster.py and monster_system.py (this is your main file where you run application_loop() ).In monster_system\, create the __init__(self\, …) method with the following attributes:\n– A dictionary to hold the monsters called monster_dictionary\n– the main menu string called main_menu (it looks like this below):\n\nCreate the application_loop() method that shows the menu (until the user enters exit) and takes in the input (1\, 2\, or 3)\, and if any other value is given\, it prints out the message as shown below:\nCreate the Monster class in a separate file called monster.py and give it the 3 following attributes: species\, health\, and max_attack. health and max_attack will be integer values. Create a method called get_info that displays the information such as: \nDragon – 150 Health – 50 Max Attack \nGo back to the MonsterSystem class and create the add_monster() and display_all_monsters() method to use when the user inputs 1 or 2. \nIn add_monster()\, ask the user for species\, health\, and max_attack which will be used to initialize a Monster object\, which you will put into the dictionary. Use the species name for the dictionary key. \nThese are all things you should already be familiar with from library system or the school system project (printing a menu\, showing all the items in a dictionary (using a for loop)\, and adding items to the dictionary. \nThis is what the program looks like after the user enters 2 (which calls the display_all_monsters() method in the application_loop() method):\n \nThis is what the program looks like after the user enters 1:\n\n\nNotes\nIf you have any questions\, email me at ddjapri@ayclogic.com !!
URL:https://www.ayclogic.com/event/5-pm-python-oop-darin-2/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231212T170000
DTEND;TZID=America/Los_Angeles:20231212T180000
DTSTAMP:20260506T031650
CREATED:20231213T035945Z
LAST-MODIFIED:20231213T041237Z
UID:23014-1702400400-1702404000@www.ayclogic.com
SUMMARY:5 PM – Python OOP – Allison
DESCRIPTION:Today we:\n\nReviewed the homework\nLearned how to loop through a dictionary’s keys\nLearned how to loop through a dictionary’s values\nLearned how to loop through a dictionary’s items\n\nHomework:\n\nUpload this homework in the Google Drive folder as Dec12_DictionaryLooping:\n\nRead and do the codes from Pg. 100-101\nDo the “TRY IT YOURSELF” section on Page 105\n\n\nUpload this homework in the Google Drive folder as Dec12_PhoneBook:\n\nCreate the Phone Book Dictionary Program\nSee instructions for the program here: https://www.ayclogic.com/phone-book-system/\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-python-oop-allison/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231211T170000
DTEND;TZID=America/Los_Angeles:20231211T180000
DTSTAMP:20260506T031650
CREATED:20231214T210007Z
LAST-MODIFIED:20231214T210031Z
UID:23043-1702314000-1702317600@www.ayclogic.com
SUMMARY:5 PM - Python OOP - Juan
DESCRIPTION:Today We Did\n\nReviewed last week’s homework and finished the Library System project:\n\nCreated a Book class\nCreated a class attribute books (dictionary) to store Book object instances\nReviewed HW\, class methods for:\n\nAdd Book\nList All Books\nFind Book by name\nList all old books (before 2000).\n\n\nFinished the application_loop() function to support all menu choices\n\n\n\nHomework\nName your file Dec18_Inheritance_HW.py and do: \n\nRead and copy code from pg. 168-170\nTry It Yourself – pg. 173\, 9-6 and 9-7
URL:https://www.ayclogic.com/event/5-pm-python-oop-juan-6/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231113T190000
DTEND;TZID=America/Los_Angeles:20231113T200000
DTSTAMP:20260506T031650
CREATED:20231114T053257Z
LAST-MODIFIED:20231128T015558Z
UID:22602-1699902000-1699905600@www.ayclogic.com
SUMMARY:7 PM - Python OOP - Gamas
DESCRIPTION:Today We Did\n\nWe continued on Library System.\nWe added Book.get_info() method.\nWe did find book by name.\n\nHomework\n\nCreate a new pycharm project MonsterInheritance\nIn this new project\,\n\ncreate a new file monster.py and a class Monster with 3 attributes: species\, health\, max_damage.\ncreate a new file main.py that will run and start the program. Similar to school system.\n\n\nInside main.py\, create a new dictionary self.monster_dictionary\nImmediately add 3 monsters to the dictionary:\n\nDragon – health 100\, max damage 100\nTroll – health 50\, max damage 75\nWater Golem – 50 health\, max damage 50.\n\n\nThe program should behave like the following. Just do feature 1 and 2.\n\nWelcome to AYC Logic adventure game\n1. Add new monster\n2. List all monsters\n3. Start adventure\nPlease make your selection. Enter "quit" to exit: 2\n\nLIST ALL MONSTERS \n- Dragon has 100 health and can do 100 damage\n- Troll - 50 health - 75 max damage\n- Water Golem - 50 health - 50 max damage\n\nWelcome to AYC Logic adventure game\n1. Add new monster\n2. List all monsters\n3. Start adventure\nPlease make your selection. Enter "quit" to exit: 1\n\nADD NEW MONSTER\nEnter monster species: Griffin\nEnter monster health: 50\nEnter monster max damage: 50\nYou have successfully added Griffin into our system.\n\nWelcome to AYC Logic adventure game\n1. Add new monster\n2. List all monsters\n3. Start adventure\nPlease make your selection. Enter "quit" to exit: 2\n\nLIST ALL MONSTERS \n- Dragon has 100 health and can do 100 damage\n- Troll - 50 health - 75 max damage\n- Water Golem - 50 health - 50 max damage\n- Griffin - 50 health - 50 max damage\n\nWelcome to AYC Logic adventure game\n1. Add new monster\n2. List all monsters\n3. Start adventure\nPlease make your selection. Enter "quit" to exit:
URL:https://www.ayclogic.com/event/7-pm-python-oop-gamas-9/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231104T090000
DTEND;TZID=America/Los_Angeles:20231104T100000
DTSTAMP:20260506T031650
CREATED:20231104T030016Z
LAST-MODIFIED:20231104T030050Z
UID:22435-1699088400-1699092000@www.ayclogic.com
SUMMARY:9 AM - Python OOP - Indo - Gamas
DESCRIPTION:Today We Did\n\nWe continued with SchoolSystem project\nWe added List all students.\n\nHomework\n\nAfter you are done with the homework\, upload both teacher.py and oct_28_school_system.py files to google drive.\nCreate a new file teacher.py\n\nInside this file create a new class Teacher: name\, age\, phone\, subject_of_expertise.\n\n\nAnd inside oct_28_school_system.py add codes to implement the following\n\n\nPlease select one of the following\n1. Add Student\n2. List all students\n3. Find student\n4. Add Teacher\n5. List all teachers\nEnter your selection (Enter "exit" to quit): 4\n\nADD NEW TEACHER\nEnter Teacher Name: Gamas\nEnter Teacher age: 100\nEnter Teacher phone: 888-888-8888\nEnter Teacher Subject of Expertise: Python\nYou have added Gamas as one of our teacher.\n\nPlease select one of the following\n1. Add Student\n2. List all students\n3. Find student\n4. Add Teacher\n5. List all teachers\nEnter your selection (Enter "exit" to quit): 5\n\nLIST ALL TEACHERS\nGamas is 100 years old. His phone is 888-888-8888 and he teaches Python.
URL:https://www.ayclogic.com/event/9-am-python-oop-indo-gamas-7/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231030T170000
DTEND;TZID=America/Los_Angeles:20231030T180000
DTSTAMP:20260506T031650
CREATED:20231031T013050Z
LAST-MODIFIED:20231031T013109Z
UID:22394-1698685200-1698688800@www.ayclogic.com
SUMMARY:5 PM - Python OOP - Juan
DESCRIPTION:Gamas Sub \nToday We Did\n\nWe reviewed School System homeworks\n\nWe reviewed how to add staff to dictionary\nWe reviewed how to list all staffs.\nWe went over how to choose the right dictionary key from staff. Is it staff.name\, staff.email or staff.phone. The key of dictionary will be depend on the program.\n\nIf the program have feature to find staff using name then\, the dictionary key has to be the staff.name.\nIf the program have feature to find staff using phone then\, the dictionary key has to be the staff.phone.\nIf the program have feature to find staff using name and email then you need to create 2 dictionaries\, one with  staff.name key and another with staff.email key.\n\n\nWe reviewed how to list all staffs younger than 20.\n\n\n\nHomework\n\nAll files that we did in the class can be accessed inside https://drive.google.com/drive/folders/1r_ICEomRtQgux1_ZtUT4OhHX_SXB7uvh?usp=sharing\nInside add_new_student(self) method\, make sure to convert “age” from String to Integer.\nAdd 2 more features in the menu\n\n\n19. List all students older than 14 inside dictionary- HW\n20. List all students older than 14 inside list- HW\n\nThis features are very similar to list all staffs younger than 20 feature.\n\n\nAfter you add these 2 features. Run your program and add these 3 students\n\n\nADD NEW STUDENT\nEnter student's name: Gamas\nEnter student's age: 100\nEnter student's grade: 12\nAdded student: Gamas\, 100\, 12\n\nADD NEW STUDENT\nEnter student's name: Juan\nEnter student's age: 20\nEnter student's grade: 11\nAdded student: Juan\, 20\, 11\n\nADD NEW STUDENT\nEnter student's name: Ely\nEnter student's age: 12\nEnter student's grade: 7\nAdded student: Ely\, 12\, 7\n\nAnd then do the 19. List all students older than 14 inside dictionary- HW and you should get\n\n\nLIST ALL STUDENTS OLDER THAN 14 USING DICTIONARY\nGamas : age 100\, grade 12\nJuan : age 20\, grade 11\n\n\n\nAnd then do the 20. List all students older than 14 inside list- HW and you should get\n\n\nLIST ALL STUDENTS OLDER THAN 14 USING LIST\nGamas : age 100\, grade 12\nJuan : age 20\, grade 11
URL:https://www.ayclogic.com/event/5-pm-python-oop-juan/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231028T090000
DTEND;TZID=America/Los_Angeles:20231028T100000
DTSTAMP:20260506T031650
CREATED:20231028T030149Z
LAST-MODIFIED:20231028T030149Z
UID:22345-1698483600-1698487200@www.ayclogic.com
SUMMARY:9 AM - Python OOP - Indo - Gamas
DESCRIPTION:Today We Did\n\nWe finished oct_21_robux_shopping_cart_using_class.py\nWe started SchoolSystem project.\n\nHomework\n\nCreate a new file student.py\n\nInside this file\, create a new Class Student with 3 attributes: name\, age and grade.\n\n\nInside school_system.py\n\nWhen user select “1. Add student” ask 3 questions and create a new instance of Student class and add it into self.student_dictionary. The key is the name of the student and the value is the Student class.\n\nPlease select one of the following\n1. Add Student\n2. List all students list\n3. Find student\nEnter your selection (Enter "exit" to quit): 1\n\nADD NEW STUDENT\nEnter student's name: John\nEnter student's age: 99\nEnter student's grade: 40\nYou have added John student in our system.
URL:https://www.ayclogic.com/event/9-am-python-oop-indo-gamas-6/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231014T150000
DTEND;TZID=America/Los_Angeles:20231014T160000
DTSTAMP:20260506T031650
CREATED:20231014T225907Z
LAST-MODIFIED:20231014T225907Z
UID:22143-1697295600-1697299200@www.ayclogic.com
SUMMARY:3 PM – Python Object Oriented Programming – Sebastian
DESCRIPTION:Today We Did\n\nFinished the monster system\nBegan review for final exam\nWent over practice test for homework\nIn case you need anything\, feel free to email me at sebastian@ayclogic.com\n\nHomework\n\nHomework: https://forms.gle/SCvP2q14eFCk4JJ57
URL:https://www.ayclogic.com/event/3-pm-python-object-oriented-programming-sebastian-16/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231009T190000
DTEND;TZID=America/Los_Angeles:20231009T200000
DTSTAMP:20260506T031650
CREATED:20231010T223801Z
LAST-MODIFIED:20231013T223815Z
UID:22115-1696878000-1696881600@www.ayclogic.com
SUMMARY:7:00 PM - Python OOP - Juan
DESCRIPTION:Today We Did\n\nBegan working on the School System\n\nCreated the School System class\nCreated a Student class\n\n\n\nHomework\n\n\n\nUpload your main.py file to the google drive and do:\n\nFinish the add_new_student function\n\nUse an instance created from the Student class\nAdd the student to the student dictionary
URL:https://www.ayclogic.com/event/700-pm-python-oop-juan-9/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231007T150000
DTEND;TZID=America/Los_Angeles:20231007T160000
DTSTAMP:20260506T031650
CREATED:20231012T180448Z
LAST-MODIFIED:20231012T180448Z
UID:22103-1696690800-1696694400@www.ayclogic.com
SUMMARY:3 PM – Python Object Oriented Programming – Sebastian
DESCRIPTION:Today We Did\n\nContinued the Monster System class\nBegan developing the logic for magic and sword attacks\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: Spend some time reviewing the code we made for the Monster System and study it closer so you’re sure you understand every part of how inheritance works. 
URL:https://www.ayclogic.com/event/3-pm-python-object-oriented-programming-sebastian-15/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20231007T090000
DTEND;TZID=America/Los_Angeles:20231007T100000
DTSTAMP:20260506T031650
CREATED:20231007T031152Z
LAST-MODIFIED:20231007T031152Z
UID:21961-1696669200-1696672800@www.ayclogic.com
SUMMARY:9 AM - Python OOP - Indo - Gamas
DESCRIPTION:Today We Did\n\nWe learned more about Python “class”. We learned about different rules and terminologies of using Python class.\n\nHomework\n\nMemorize all the rules and terminologies that we have learned when studying about Python class today.\nCreate oct_6_class_homework2.py\n\nDo page 162. TRY IT YOURSELF – 9-1\, 9-2\, 9-3
URL:https://www.ayclogic.com/event/9-am-python-oop-indo-gamas-3/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20230930T150000
DTEND;TZID=America/Los_Angeles:20230930T160000
DTSTAMP:20260506T031650
CREATED:20231003T032102Z
LAST-MODIFIED:20231003T032102Z
UID:21915-1696086000-1696089600@www.ayclogic.com
SUMMARY:3 PM – Python Object Oriented Programming – Sebastian
DESCRIPTION:Today We Did\n\nContinued learning about inheritance fundamentals\nWorked through monster system project\nCompleted Monster parent class\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: Begin creating the Dragon class in our MonsterSystem project.\n\nInside the file “dragon.py”\, create the class “Dragon” which will inherit our “Monster” class.\nOverride the Dragon class’s constructor and make it only take in 2 parameters: health\, and max_attack (don’t take in species anymore)\nCall the parent class’s constructor (hint: How can we call methods from a class’s parent?)
URL:https://www.ayclogic.com/event/3-pm-python-object-oriented-programming-sebastian-14/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20230930T090000
DTEND;TZID=America/Los_Angeles:20230930T100000
DTSTAMP:20260506T031650
CREATED:20231001T021509Z
LAST-MODIFIED:20231001T021509Z
UID:21876-1696064400-1696068000@www.ayclogic.com
SUMMARY:9 AM - Python OOP - Gamas
DESCRIPTION:Today We Did\n\nWe reviewed Phone Book homework.\nWe went over proof that in worst case scenario\, using python dictionary to search is faster than using list.\nWe went over using Python class as a custom data type.\n\nHomework\n\nno homework
URL:https://www.ayclogic.com/event/9-am-python-oop-gamas/
CATEGORIES:OOP Python,Python Class
END:VEVENT
END:VCALENDAR