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:20241118T160000
DTEND;TZID=America/Los_Angeles:20241118T170000
DTSTAMP:20260502T194625
CREATED:20241118T235537Z
LAST-MODIFIED:20241119T024908Z
UID:27431-1731945600-1731949200@www.ayclogic.com
SUMMARY:4 PM – Python OOP – Darin
DESCRIPTION:Today We:\n\nReviewed HW and got inspiration for how we can use OOP in games.\nStarted on the MonsterSystem project.\n\nHomework:\n\nContinue in your main.py file for the MonsterSystem project. If you are missing code or a file\, look for the file in this google drive: https://drive.google.com/drive/folders/1fjS0f3MTDQRRo3pdQvbsiKnNWPQQqptf?usp=sharing\nWe added some predefined monsters in our code already inside of the application loop method\, just before we start the while loop.\nYour job is to implement selections 1 and 2.\nSelection 1 is where you an add a new monster object into the dictionary by getting input from the user.\nSelection 2 is where you list all the monsters in the system using a for loop.\nFor both selection 1 and 2\, refer to the past projects on how to add an Object into a dictionary to store\, and how to loop through the dictionary to print out object values.\nSample output:Please select one of the following\n1. Add Monster\n2. List all monsters\n3. Play Adventure\nEnter your selection (Enter ‘exit’ to quit): 2 \nLIST OF ALL MONSTERS\nDragon – Health: 200 – Max Attack: 20\nTroll – Health: 150 – Max Attack: 15 \nPlease select one of the following\n1. Add Monster\n2. List all monsters\n3. Play Adventure\nEnter your selection (Enter ‘exit’ to quit): 1 \nADD MONSTER\nEnter the species of the monster: Unicorn\nEnter the health of the monster: 200\nEnter the max attack of the monster: 20\nSuccessfully added UNICORN into the system. \nPlease select one of the following\n1. Add Monster\n2. List all monsters\n3. Play Adventure\nEnter your selection (Enter ‘exit’ to quit): 2 \nLIST OF ALL MONSTERS\nDragon – Health: 200 – Max Attack: 20\nTroll – Health: 150 – Max Attack: 15\nUnicorn – Health: 200 – Max Attack: 20\n\nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions.
URL:https://www.ayclogic.com/event/4-pm-python-oop-darin-15/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241112T190000
DTEND;TZID=America/Los_Angeles:20241112T200000
DTSTAMP:20260502T194625
CREATED:20241113T040429Z
LAST-MODIFIED:20241113T040429Z
UID:27381-1731438000-1731441600@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nFinished Grocery System\, and got started on the School System application\, introducing more OOP.\n\nHomework:\n\nContinue on your School System application in main.py\, and complete the find method for selection == “3”. Refer to phonebooksystem.py from the previous files for how to find stuff from a dictionary.\n\n\nThis is the comment we wrote for the homework due next week\n\n# your hw is to find the student in the dictionary.\n# If you find the student by the name\, print out the details of the student\, if not\, mention the name doesn't exist\n\n# Refer to phonebooksystem.py to see how to find things with a dictionary\n\n\n\nSubmit this files to the google drive when you are done! \nNotes:\nYou can contact me at ddjapri@ayclogic if you have any questions!
URL:https://www.ayclogic.com/event/7-pm-python-oop-darin-10/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241112T180000
DTEND;TZID=America/Los_Angeles:20241112T190000
DTSTAMP:20260502T194625
CREATED:20241113T012205Z
LAST-MODIFIED:20241113T040908Z
UID:27377-1731434400-1731438000@www.ayclogic.com
SUMMARY:6 PM – Intro To Python – Darin
DESCRIPTION:Your Final Exam is Next Week on  November 19 lasting 2 hours.\nWhat We Did Today:\n\nFinished the robux system program.\nReviewed for the final exam next week.\n\nHomework:\nStudy for the final exam next week! \nDo the optional homework for the exploration game for extra practice! \n# Make a text based program that lets you explore islands!\n# You will have like 4 possible islands to explore - use a list \n# example output: \n“””\nWelcome to AYCLOGIC Exploration Game! \nWhat do you want to do?\n1. Explore islands\n2. View explored islands\n3. Exit\nEnter your selection: abcd\nInvalid output. Please try again. \nWhat do you want to do?\n1. Explore islands\n2. View explored islands\n3. Exit\nEnter your selection: 2\nYou haven’t explored any islands! \nWhat do you want to do?\n1. Explore islands\n2. View explored islands\n3. Exit\nEnter your selection: 1\nYou explored Tahiti! \nWhat do you want to do?\n1. Explore islands\n2. View explored islands\n3. Exit\nEnter your selection: 2\nYou have explored:\nTahiti \nWhat do you want to do?\n1. Explore islands\n2. View explored islands\n3. Exit\nEnter your selection: 1\nYou explored Bali! \nWhat do you want to do?\n1. Explore islands\n2. View explored islands\n3. Exit\nEnter your selection: 2\nYou have explored:\nTahiti\nBali \nWhat do you want to do?\n1. Explore islands\n2. View explored islands\n3. Exit\nEnter your selection: 1\nYou explored Hawaii! \nWhat do you want to do?\n1. Explore islands\n2. View explored islands\n3. Exit\nEnter your selection: 2\nYou have explored:\nTahiti\nBali\nHawaii \nWhat do you want to do?\n1. Explore islands\n2. View explored islands\n3. Exit\nEnter your selection: 3\nThank you for using the AYCLOGIC Exploration Game. \nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions!
URL:https://www.ayclogic.com/event/6-pm-intro-to-python-darin-63/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241111T190000
DTEND;TZID=America/Los_Angeles:20241111T200000
DTSTAMP:20260502T194625
CREATED:20241112T041022Z
LAST-MODIFIED:20241112T041022Z
UID:27367-1731351600-1731355200@www.ayclogic.com
SUMMARY:7:00 PM – Intro to Python – Sebastian
DESCRIPTION:Today we did \n\nLearning about for loops\n\nFor loops with range\nNormal for loops\n\n\nMonday 7:00PM class code:\nhttps://drive.google.com/drive/folders/1Nm9mpaXjjpK8akSC1v8YpnGMTX-FpTyD?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 follow the steps specified in this assignment:\n\nhttps://www.ayclogic.com/animal-list-and-for-loop-exercises/
URL:https://www.ayclogic.com/event/700-pm-intro-to-python-sebastian-5/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241111T160000
DTEND;TZID=America/Los_Angeles:20241111T170000
DTSTAMP:20260502T194625
CREATED:20241111T224353Z
LAST-MODIFIED:20241112T015930Z
UID:27359-1731340800-1731344400@www.ayclogic.com
SUMMARY:4 PM – Python OOP – Darin
DESCRIPTION:Today We:\n\nContinued and finished the supermarket application!\nReviewed some design concepts such as indentation\, placement of functions\, automation of some aspects of the program.\n\nHomework:\n\nCreate the reset() function in your Supermarket Application that restarts what you have purchased and the price you owe.\nRefer to the google notes on how to remove an item from a dictionary.\nUse for loop to erase the items in your dictionary so it becomes empty.\n\n\n# your hw\ndef reset(self):\n    # reset the items_bought dictionary along with the price\n    # use a for loop to clean the dictionary - help\n    # set price = 0\n    pass\n\n\n\nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions.
URL:https://www.ayclogic.com/event/4-pm-python-oop-darin-14/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241107T183000
DTEND;TZID=America/Los_Angeles:20241107T193000
DTSTAMP:20260502T194625
CREATED:20241108T033113Z
LAST-MODIFIED:20241108T033113Z
UID:27338-1731004200-1731007800@www.ayclogic.com
SUMMARY:6:30 PM – Intro to Python – Sebastian
DESCRIPTION:Today we did \n\nThe first quiz! Answers will be released to your emails before our next class\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\nNo homework because of quiz\, great work!
URL:https://www.ayclogic.com/event/630-pm-intro-to-python-sebastian-30/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241105T190000
DTEND;TZID=America/Los_Angeles:20241105T200000
DTSTAMP:20260502T194625
CREATED:20241106T035444Z
LAST-MODIFIED:20241106T035921Z
UID:27310-1730833200-1730836800@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nImproved the Grocery System application to use classes and make the code better and shorter\n\nHomework:\n\nIn your Nov5_GrocerySystemV3.py file\, edit your code to check for the days until expiration\, and if it is less than 1\, tell the user “The food will expire soon in 1 day!” or “The food will expire soon in 0 day!”\n\nSubmit this files to the google drive when you are done! \nNotes:\nYou can contact me at ddjapri@ayclogic if you have any questions!
URL:https://www.ayclogic.com/event/7-pm-python-oop-darin-9/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241105T180000
DTEND;TZID=America/Los_Angeles:20241105T190000
DTSTAMP:20260502T194625
CREATED:20241106T024313Z
LAST-MODIFIED:20241106T024356Z
UID:27297-1730829600-1730833200@www.ayclogic.com
SUMMARY:6 PM – Intro To Python – Darin
DESCRIPTION:What We Did Today:\n\nStarted the Robux System Program\, continuing off of the grocery system and making it better.\n\nHomework:\nFinish 100% of progress for your final project with the following guidelines: https://www.ayclogic.com/intro-to-python-final-project-criteria/ \nUpload this file into the google drive when you are finished! \nNotes:\nThe final project is due November 12 NEXT WEEK. \nYou need to make 25% progress IN CODE for your project per week!
URL:https://www.ayclogic.com/event/6-pm-intro-to-python-darin-62/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241104T190000
DTEND;TZID=America/Los_Angeles:20241104T200000
DTSTAMP:20260502T194625
CREATED:20241105T043940Z
LAST-MODIFIED:20241105T044318Z
UID:27289-1730746800-1730750400@www.ayclogic.com
SUMMARY:7:00 PM – Intro to Python – Sebastian
DESCRIPTION:Today we did \n\nLots of practice with while loops\n\nCounting up and down\nSkipping numbers (evens\, odds\, 10’s)\nLooping until user asks to stop\n\n\nMonday 7:00PM class code:\nhttps://drive.google.com/drive/folders/1Nm9mpaXjjpK8akSC1v8YpnGMTX-FpTyD?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\, named NOV4_homework\nHomework: \n\nIf you have the 2nd edition: Page 118 and 121\nIf you have the 3rd edition: Page 117 and 121
URL:https://www.ayclogic.com/event/700-pm-intro-to-python-sebastian-4/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241104T160000
DTEND;TZID=America/Los_Angeles:20241104T170000
DTSTAMP:20260502T194625
CREATED:20241105T013406Z
LAST-MODIFIED:20241105T013406Z
UID:27285-1730736000-1730739600@www.ayclogic.com
SUMMARY:4 PM – Python OOP – Darin
DESCRIPTION:Today We:\n\nStarted on the supermarket application\, going over code structure.\n\nHomework:\n\nIn the same Supermarket Application project\, add the “expired” parameter to the GroceryItem class\, which will be set to either True or False\nIn the main file\, check if the food is expired before buying anything\, and if it is expired\, print a statement saying that the food is expired and therefore you can’t purchase it.\n\nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions.
URL:https://www.ayclogic.com/event/4-pm-python-oop-darin-13/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241030T180000
DTEND;TZID=America/Los_Angeles:20241030T190000
DTSTAMP:20260502T194625
CREATED:20241031T022510Z
LAST-MODIFIED:20241031T022526Z
UID:27257-1730311200-1730314800@www.ayclogic.com
SUMMARY:6:00 PM – Intro to Python – Daniel
DESCRIPTION:Today We Did\n\nStarted and finished the robux shopping project\nReviewed projects and got feedback\n\nHomework\n\nFinish the rest of your project\, it’s due next week!
URL:https://www.ayclogic.com/event/600-pm-daniel-sebastian/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241029T190000
DTEND;TZID=America/Los_Angeles:20241029T200000
DTSTAMP:20260502T194625
CREATED:20241030T030234Z
LAST-MODIFIED:20241030T030234Z
UID:27237-1730228400-1730232000@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nReviewed the homework\, how OOP works as a concept.\nLearnt about default values in classes for object construction\n\nHomework:\n\nIn a file called Oct29_OOP.py\, do pages 162 TIY 9-3 and page 167 TIY 9-4\, 9-5\n\nSubmit this files to the google drive when you are done! \nNotes:\nYou can contact me at ddjapri@ayclogic if you have any questions!
URL:https://www.ayclogic.com/event/7-pm-python-oop-darin-8/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241029T180000
DTEND;TZID=America/Los_Angeles:20241029T190000
DTSTAMP:20260502T194625
CREATED:20241030T032111Z
LAST-MODIFIED:20241030T032111Z
UID:27243-1730224800-1730228400@www.ayclogic.com
SUMMARY:6 PM – Intro To Python – Darin
DESCRIPTION:What We Did Today:\n\nFinished the grocery system program\n\nHomework:\nFinish up to 75% of progress for your final project with the following guidelines: https://www.ayclogic.com/intro-to-python-final-project-criteria/ \nUpload this file into the google drive when you are finished! \nNotes:\nThe final project is due November 12. \nYou need to make 25% progress IN CODE for your project per week!
URL:https://www.ayclogic.com/event/6-pm-intro-to-python-darin-61/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241028T190000
DTEND;TZID=America/Los_Angeles:20241028T200000
DTSTAMP:20260502T194625
CREATED:20241029T031559Z
LAST-MODIFIED:20241029T031559Z
UID:27222-1730142000-1730145600@www.ayclogic.com
SUMMARY:7:00 PM – Intro to Python – Sebastian
DESCRIPTION:Today We Did \n\nFinish learning about lists and the different things we can do with them\nBegin learning about loops\nMonday 7:00PM class code:\nhttps://drive.google.com/drive/folders/1Nm9mpaXjjpK8akSC1v8YpnGMTX-FpTyD?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 pages 38 to 41 from your book if you have the 2nd edition\nComplete pages 37 to 41 from your book if you have the 3rd edition (not the “Try it yourself”).\nYou should cover the access\, modify\, append\, and remove sections.
URL:https://www.ayclogic.com/event/700-pm-intro-to-python-sebastian-3/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241028T160000
DTEND;TZID=America/Los_Angeles:20241028T170000
DTSTAMP:20260502T194625
CREATED:20241028T223827Z
LAST-MODIFIED:20241029T010604Z
UID:27214-1730131200-1730134800@www.ayclogic.com
SUMMARY:4 PM – Python OOP – Darin
DESCRIPTION:Today We:\n\nCompleted the library system.\nReviewed some concepts regarding the applications of dictionaries\, such as adding\, listing\, and finding from a dictionary\n\nHomework:\n\nIn the same Library System project\, finish the initialize_books() method\, adding 4 books to your system of your choice\, and calling the method before you enter the while loop.\n\nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions.
URL:https://www.ayclogic.com/event/4-pm-python-oop-darin-12/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241025T190000
DTEND;TZID=America/Los_Angeles:20241025T200000
DTSTAMP:20260502T194625
CREATED:20241026T022109Z
LAST-MODIFIED:20241026T022109Z
UID:27199-1729882800-1729886400@www.ayclogic.com
SUMMARY:7 PM - Python Game Dev - Gamas
DESCRIPTION:Today We Did\n\nContinued with Shoot Balloon. Add colission detection between balloon and target\n\nHomework\n\nEugene\n\nDisplay the score properly.\nMake more than one button appear on the screen at any given time.\nAdd a countdown\n\nWhen countdown goes to 0 and score > 10 then show game_win\notherwise show game_lose.\n\n\nFix the hammer hitbox properly.\n\n\nRiley\n\nadd a feature that would clear the gray boxes when a row is full.\nadd gray box when L tetromino hit the bottom/floor or other graybox.\nif you can add code that would drops all the grayboxes above the deleted box to go down.\n\n\n\n 
URL:https://www.ayclogic.com/event/7-pm-python-game-dev-gamas-23/
CATEGORIES:Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241024T183000
DTEND;TZID=America/Los_Angeles:20241024T193000
DTSTAMP:20260502T194625
CREATED:20241025T024916Z
LAST-MODIFIED:20241025T025024Z
UID:27188-1729794600-1729798200@www.ayclogic.com
SUMMARY:6:30 PM – Intro to Python – Sebastian
DESCRIPTION:Today We Did \n\nQuiz review\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: Work through these Python exercises to help you prepare for the quiz:https://www.ayclogic.com/intro-to-python-exercises/
URL:https://www.ayclogic.com/event/630-pm-intro-to-python-sebastian-29/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241022T190000
DTEND;TZID=America/Los_Angeles:20241022T200000
DTSTAMP:20260502T194625
CREATED:20241023T030547Z
LAST-MODIFIED:20241023T030547Z
UID:27161-1729623600-1729627200@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nReviewed how to use dictionaries as we converted the robux_system to use dictionaries.\nIntroduced the concept of object oriented programming! Elaborated on the distinction between classes and objects\, and showed a Human class example.\n\nHomework:\n\nIn a file called Oct22_OOP_hw1.py\, copy pages 158-161\nIn a file called Oct22_OOP_hw2.py\, do page 162 TIY 9-1 and 9-2\n\nSubmit these files to the google drive when you are done! \nNotes:\nYou can contact me at ddjapri@ayclogic if you have any questions!
URL:https://www.ayclogic.com/event/7-pm-python-oop-darin-7/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241022T180000
DTEND;TZID=America/Los_Angeles:20241022T190000
DTSTAMP:20260502T194625
CREATED:20241023T031253Z
LAST-MODIFIED:20241023T031253Z
UID:27163-1729620000-1729623600@www.ayclogic.com
SUMMARY:6 PM – Intro To Python – Darin
DESCRIPTION:What We Did Today:\n\nReviewed final project progress\nReviewed how to draw half circles and triangles\nGot started on the GrocerySystem text based progam\n\nHomework:\nFinish up to 50% of progress for your final project with the following guidelines: https://www.ayclogic.com/intro-to-python-final-project-criteria/ \nUpload this file into the google drive when you are finished! \nNotes:\nThe final project is due November 12. \nYou need to make 25% progress IN CODE for your project per week!
URL:https://www.ayclogic.com/event/6-pm-intro-to-python-darin-60/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241021T190000
DTEND;TZID=America/Los_Angeles:20241021T200000
DTSTAMP:20260502T194625
CREATED:20241022T030554Z
LAST-MODIFIED:20241022T030554Z
UID:27157-1729537200-1729540800@www.ayclogic.com
SUMMARY:7:00 PM – Intro to Python – Sebastian
DESCRIPTION:Today We Did \n\nReviewed the 3 kinds of if statements\nBegan learning about lists\nMonday 7:00PM class code:\nhttps://drive.google.com/drive/folders/1Nm9mpaXjjpK8akSC1v8YpnGMTX-FpTyD?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: From this (https://www.ayclogic.com/tell-me-your-age/) exercise\, please attempt #1\n\nDon’t worry about the questions on #2 and #3 which talk about “forever loops”
URL:https://www.ayclogic.com/event/700-pm-intro-to-python-sebastian-2/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241021T160000
DTEND;TZID=America/Los_Angeles:20241021T170000
DTSTAMP:20260502T194625
CREATED:20241022T001217Z
LAST-MODIFIED:20241022T001217Z
UID:27152-1729526400-1729530000@www.ayclogic.com
SUMMARY:4 PM – Python OOP – Darin
DESCRIPTION:Today We:\n\nReviewed the functionality of our class for the School System\, with adding\, listing\, and finding objects.\nStarted the Library System application.\n\nHomework:\n\nIn the same Library System project\, complete the list books\, find book by title\, and find books by id methods. (methods 2-4)\n\nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions.
URL:https://www.ayclogic.com/event/4-pm-python-oop-darin-11/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241017T190000
DTEND;TZID=America/Los_Angeles:20241017T200000
DTSTAMP:20260502T194625
CREATED:20241018T023332Z
LAST-MODIFIED:20241018T023332Z
UID:27121-1729191600-1729195200@www.ayclogic.com
SUMMARY:6:30 PM – Intro to Python – Sebastian
DESCRIPTION:Today We Did \n\nMore loops review (practicing all 3 kinds)\nLearned about break statements\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: Complete pages 54\, 55\, 57\, and 58 from your book
URL:https://www.ayclogic.com/event/630-pm-intro-to-python-sebastian-28/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241015T190000
DTEND;TZID=America/Los_Angeles:20241015T200000
DTSTAMP:20260502T194625
CREATED:20241016T032104Z
LAST-MODIFIED:20241016T032104Z
UID:27093-1729018800-1729022400@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nFurther applied dictionaries\nWe changed Grocery System from intro to python to use a dictionary instead\, making things more efficient.\n\nHomework:\n\nCHANGE robux system so that you use a dictionary to represent the items and prices the same way you did with grocery system.\n(If you havent already) In a file called Oct1_DictionaryHW\, do pages 99 (TIY 6-1 to 6-3) and page 105 (TIY 6-4 to 6-6)\n\nNotes:\nYou can contact me at ddjapri@ayclogic if you have any questions!
URL:https://www.ayclogic.com/event/7-pm-python-oop-darin-6/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241015T180000
DTEND;TZID=America/Los_Angeles:20241015T190000
DTSTAMP:20260502T194625
CREATED:20241016T031618Z
LAST-MODIFIED:20241016T041654Z
UID:27087-1729015200-1729018800@www.ayclogic.com
SUMMARY:6 PM – Intro To Python – Darin
DESCRIPTION: What We Did Today:\n\nReviewed final project proposals\nReviewed how to use the heading and extent parameters for circles and rectangles\nLearnt how to randomize colors for object creation in turtle drawings.\n\nHomework:\nMake 25% of progress for your final project with the following guidelines: https://www.ayclogic.com/intro-to-python-final-project-criteria/ \nUpload this file into the google drive when you are finished \nNotes:\nThe final project is due November 12. \nYou need to make 25% progress IN CODE for your project per week!
URL:https://www.ayclogic.com/event/6-pm-python-oop-darin-11/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241014T190000
DTEND;TZID=America/Los_Angeles:20241014T200000
DTSTAMP:20260502T194625
CREATED:20241015T031033Z
LAST-MODIFIED:20241015T031033Z
UID:27085-1728932400-1728936000@www.ayclogic.com
SUMMARY:7:00 PM – Intro to Python – Sebastian
DESCRIPTION:Today We Did \n\nReviewed data types\nLearned how to take user input with input() function\nBegan learning about conditions and how they always turn into True or False\nBegan learning about if\, elif\, and else statements\nMonday 7:00PM class code:\nhttps://drive.google.com/drive/folders/1Nm9mpaXjjpK8akSC1v8YpnGMTX-FpTyD?usp=sharing\n\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: Create a new file called OCT14_string_homework_2.py\n\nOn page 25\, do TRY IT YOURSELF: 2-3\, 2-4\, 2-5 and 2-6
URL:https://www.ayclogic.com/event/700-pm-intro-to-python-sebastian/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241014T160000
DTEND;TZID=America/Los_Angeles:20241014T170000
DTSTAMP:20260502T194625
CREATED:20241015T000727Z
LAST-MODIFIED:20241015T000727Z
UID:27081-1728921600-1728925200@www.ayclogic.com
SUMMARY:4 PM – Python OOP – Darin
DESCRIPTION:Today We:\n\nReviewed the inner workings of classes\, object relationships\, and how to use dictionaries.\nAdded the teacher class into the program.\nNext week we will start on a similar but different application.\n\nHomework:\n\nIn the same project\, add a Staff class in a separate file with a name\, salary\, and role parameters.\nCreate the add staff\, list staff\, find staff\, and remove staff methods in your SchoolSystem class.\n\nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions.
URL:https://www.ayclogic.com/event/4-pm-python-oop-darin-10/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241010T183000
DTEND;TZID=America/Los_Angeles:20241010T193000
DTSTAMP:20260502T194625
CREATED:20241011T033700Z
LAST-MODIFIED:20241011T033700Z
UID:27040-1728585000-1728588600@www.ayclogic.com
SUMMARY:6:30 PM – Intro to Python – Sebastian
DESCRIPTION:Today We Did \n\nRevisited while loops\nLearned about for loops with the range() function\nLearned about “for each loops”\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: Complete the exercises outlined here:\nhttps://www.ayclogic.com/animal-list-and-for-loop-exercises/
URL:https://www.ayclogic.com/event/630-pm-intro-to-python-sebastian-27/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241008T190000
DTEND;TZID=America/Los_Angeles:20241008T200000
DTSTAMP:20260502T194625
CREATED:20241009T040519Z
LAST-MODIFIED:20241009T040519Z
UID:27019-1728414000-1728417600@www.ayclogic.com
SUMMARY:7 PM – Python OOP – Darin
DESCRIPTION:What We Did Today:\n\nApplied dictionaries in a text based game\n\nHomework:\n\n(If you havent already) In a file called Oct1_DictionaryHW\, do pages 99 (TIY 6-1 to 6-3) and page 105 (TIY 6-4 to 6-6)\nAdd an address book in your phone book system\, with the same functions as the phone book.\n\nNotes:\nYou can contact me at ddjapri@ayclogic if you have any questions!
URL:https://www.ayclogic.com/event/7-pm-python-oop-darin-5/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241008T180000
DTEND;TZID=America/Los_Angeles:20241008T190000
DTSTAMP:20260502T194625
CREATED:20241009T040142Z
LAST-MODIFIED:20241016T041554Z
UID:27016-1728410400-1728414000@www.ayclogic.com
SUMMARY:6 PM – Intro To Python – Darin
DESCRIPTION:What We Did Today:\n\nLearnt how to implement heading into the functions.\nExplained the final project structure\n\nHomework:\nDraw a proposal with the following guidelines: https://www.ayclogic.com/intro-to-python-final-project-criteria/ \nSubmit the proposal by taking a picture of it\, and uploading it to the google drive. \nNotes:\nThe final project is due November 12. \nYou need to make 25% progress IN CODE for your project per week starting next week!
URL:https://www.ayclogic.com/event/7-pm-python-oop-darin-4/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241007T160000
DTEND;TZID=America/Los_Angeles:20241007T170000
DTSTAMP:20260502T194625
CREATED:20241007T222105Z
LAST-MODIFIED:20241008T000510Z
UID:26998-1728316800-1728320400@www.ayclogic.com
SUMMARY:4 PM – Python OOP – Darin
DESCRIPTION:Today We:\n\nReviewed TIY page 167\, highlighting default values.\nContinued the School Application project\, further implementing object oriented concepts.\n\nHomework:\nFor Ian: \n\nIn your Sep30_SchoolSystem project\, add a staff class and add methods to add a staff into a staff list and staff dict. Add a method to list all staff using the dict\nThe staff class should have name\, salary\, and job role as variables\nUpdate the menu options accordingly.\n\nFor Parker: \n\nIn your Sep30_SchoolSystem project\, add a teacher class and add methods to add a teacher into a teacher list and teacher dict. Add a method to list all teachers using the dict\nThe teacher class should have name\, subject\, and years spent teaching as variables\nUpdate the menu options accordingly\n\nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions.
URL:https://www.ayclogic.com/event/4-pm-python-oop-darin-9/
CATEGORIES:OOP Python,Python Class
END:VEVENT
END:VCALENDAR