BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//American Young Coder - ECPv6.10.1.1//NONSGML v1.0//EN
CALSCALE:GREGORIAN
METHOD:PUBLISH
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
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20230729T090000
DTEND;TZID=America/Los_Angeles:20230729T100000
DTSTAMP:20260425T183319
CREATED:20230729T035222Z
LAST-MODIFIED:20230729T035222Z
UID:20860-1690621200-1690624800@www.ayclogic.com
SUMMARY:9 AM - Intro to Python - Indo - Gamas
DESCRIPTION:Today We Did\n\nWe completed RobuxShoppingCart program.\n\nHomework\n\nNext week is 2 hours final test. Please prepare the following topics.\n\nPython Turtle – make sure you know how to do draw rectangle\, circles and combine them together to make complex shape using functions.\nRobux Shopping Cart\nGrocery Shopping Cart\n\n\nThe final test is open book\, meaning you can look at any codes from our previous homeworks and exercises. But not from the Internet.
URL:https://www.ayclogic.com/event/9-am-intro-to-python-indo-gamas-3/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20230729T140000
DTEND;TZID=America/Los_Angeles:20230729T150000
DTSTAMP:20260425T183319
CREATED:20230729T233519Z
LAST-MODIFIED:20230729T233519Z
UID:20867-1690639200-1690642800@www.ayclogic.com
SUMMARY:2 PM – Python Object Oriented Programming – Sebastian
DESCRIPTION:Today We Did\n\nCompleted School System\nBegan Library System\nContinued to understand the differences between attributes and variables\nIn case you need anything\, feel free to email me at sebastian@ayclogic.com\n\nHomework\n\nCreate a new folder on your homework submissions called “Library System”\nHomework: Complete the remaining methods we mentioned in class. I want you to try your best to reflect on our previous SchoolSystem to think about what we should put in these new methods. Remember user input\, the dictionary attributes\, and how we loop through dictionaries.\nclass code & instructions we went over: \n \n\nfrom book import Book\nclass LibrarySystem:\ndef __init__(self):\nself.menu = “””\nPlease look at below options\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: “””\nself.title_to_book = {}\nself.id_to_book = {}\ndef add_book(self):\nprint(“\nADD NEW BOOK”)\ntitle = input(“What is the title? “)\nauthor = input(“Who is the author? “)\npublish_year = input(“When was it published? “)\nbook_id = input(“Enter book id: “)\nbook = Book(title\, author\, publish_year\, book_id)\nself.title_to_book[title] = book\nself.id_to_book[book_id] = book\n“””\nfor all methods which print book info; choose whether to print each attribute or make a method inside the book class\n“””\n“””\nlist_all_books_using_dictionary\n“””\ndef list_all_books_using_dictionary(self):\nprint(“\nLIST ALL BOOKS”)\n# loop through each book object using ANY of our dictionaries\nfor book in self.title_to_book.values():\npass\n“””\nlist_all_old_books\nonly print books whose publish_year is less than 2000\n(when should you turn the publish year to an integer?)\n“””\n“””\nfind_book_using_id\n(use id_to_book dictionary attribute)\n“””\n“””\nfind_book_using_title\n(use title_to_book dictionary attribute)\n“””\ndef application_loop(self):\nwhile True:\nselection = input(self.menu)\nif selection == “quit”:\nprint(“Thank you for using the Libray System.”)\nbreak\nif selection == “1”:\nself.add_book()\ns = LibrarySystem()\ns.application_loop()
URL:https://www.ayclogic.com/event/2-pm-python-object-oriented-programming-sebastian-6/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20230729T150000
DTEND;TZID=America/Los_Angeles:20230729T160000
DTSTAMP:20260425T183319
CREATED:20230729T234124Z
LAST-MODIFIED:20230729T234124Z
UID:20869-1690642800-1690646400@www.ayclogic.com
SUMMARY:3 PM – Python Object Oriented Programming – Sebastian
DESCRIPTION:Today We Did\n\nReviewed some important parts of object oriented programming\n\nclasses\nattributes\nthe constructor\n\n\nAdded object oriented programming to grocery system\nIn case you need anything\, feel free to email me at sebastian@ayclogic.com\n\nHomework\n\nName your homework JUL29_OOP_hw\, please submit by next Friday.\nHomework:\nPage 162 – TRY IT YOURSELF\nPage 163 to Page 166 – copy code to Thonny and run it.
URL:https://www.ayclogic.com/event/3-pm-python-object-oriented-programming-sebastian-4/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20230729T170000
DTEND;TZID=America/Los_Angeles:20230729T180000
DTSTAMP:20260425T183319
CREATED:20230805T024630Z
LAST-MODIFIED:20230805T024630Z
UID:20975-1690650000-1690653600@www.ayclogic.com
SUMMARY:5 PM - Python Game Dev - Bill
DESCRIPTION:Today We Did\n\nWe went over each individual projects.\n\nHomeworks\n\nContinue with your each individual projects\nReview your ShootBalloon project.
URL:https://www.ayclogic.com/event/5-pm-python-game-dev-bill/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
END:VCALENDAR