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:20220313T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20221106T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221015T180000
DTEND;TZID=America/Los_Angeles:20221015T190000
DTSTAMP:20260508T095644
CREATED:20221016T022451Z
LAST-MODIFIED:20221018T194504Z
UID:15806-1665856800-1665860400@www.ayclogic.com
SUMMARY:6 PM - Python OOP - Bill
DESCRIPTION:Today We Did\n\nWe finished SchoolSystem program.\n\nHomework\n\nCreate a new Book class inside book.py. Add all necessary attributes according to below expected behavior.\nCreate BookSystem class inside main.py and add the following features:\n\nAdd book\n\nUse Dictionary to store books.\nThe key of the dictionary would be bookId\, the value would be Book class.\n\n\nList all books\n\n\nExamples\n\n\nEnter one of the following:\n1. Exit\n2. Add Book\n3. List all books\n4. Find book by book id\n5. Find book by name\n6. List all books before year 2010\nPlease enter your selection: 3\n\nLIST ALL BOOKS\n111 - Chamber of Secrets by JK Rowling published on 2012\n222 - Goblet of Fire by JK Rowling published on 2013\nabcd - The Fellowship of the Ring by JRR Tolkien published on 2022\n\nEnter one of the following:\n1. Exit\n2. Add Book\n3. List all books\n4. Find book by book id\n5. Find book by name\n6. List all books before year 2010\nPlease enter your selection: 2\n\nADD NEW BOOK\nEnter book name: Lightning Thief\nEnter book author: Rick Riordan\nEnter publication year: 2005\nEnter book id: 333\n\nEnter one of the following:\n1. Exit\n2. Add Book\n3. List all books\n4. Find book by book id\n5. Find book by name\n6. List all books before year 2010\nPlease enter your selection: 3\n\nLIST ALL BOOKS\n111 - Chamber of Secrets by JK Rowling published on 2012\n222 - Goblet of Fire by JK Rowling published on 2013\nabcd - The Fellowship of the Ring by JRR Tolkien published on 2022\n333 - Lightning Thief by Rick Riordan published on 2005
URL:https://www.ayclogic.com/event/6-pm-python-oop-bill-10/
CATEGORIES:OOP Python
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221015T150000
DTEND;TZID=America/Los_Angeles:20221015T160000
DTSTAMP:20260508T095644
CREATED:20221015T225800Z
LAST-MODIFIED:20221015T225800Z
UID:15801-1665846000-1665849600@www.ayclogic.com
SUMMARY:3 PM – Intro To Python – Sebastian
DESCRIPTION:Today We Did\n\nLearned about range(value) function\, gives list from 0 to value – 1 (ex: range(4) gives [0\, 1\, 2\, 3])\nLearned about for each loops\, gives every value in list\nLearned about for loops that give every value in list ( for index in range(len(list)) )\n\nHomework\n\nhttps://www.ayclogic.com/animal-list-and-for-loop-exercises/\nONLY number 1: https://www.ayclogic.com/tell-me-your-age/\n\n 
URL:https://www.ayclogic.com/event/3-pm-intro-to-python-sebastian-8/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221015T140000
DTEND;TZID=America/Los_Angeles:20221015T150000
DTSTAMP:20260508T095644
CREATED:20221016T030547Z
LAST-MODIFIED:20221016T030547Z
UID:15813-1665842400-1665846000@www.ayclogic.com
SUMMARY:2 PM - Intro To Python - Gamas
DESCRIPTION:Today We Did\n\nWe finished reviewing Dictionary homework. We reviewed phone book small program and how to utilize Python Dictionary to store and search phone numbers.\nWe learned how to read error messages in Python and Pycharm.\n\nHomework\n\nCreate Oct15_FixPythonErrorHomework.py\nCopy and paste code from https://www.ayclogic.com/fixing-python-bugs/ and fix all the errors.
URL:https://www.ayclogic.com/event/2-pm-intro-to-python-gamas-24/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221015T140000
DTEND;TZID=America/Los_Angeles:20221015T150000
DTSTAMP:20260508T095644
CREATED:20221015T215749Z
LAST-MODIFIED:20221015T215749Z
UID:15799-1665842400-1665846000@www.ayclogic.com
SUMMARY:2 PM – Intro To Python – Sebastian
DESCRIPTION:Today We Did\n\nFor loops using range() (gives us every index)\nFor each loops (gives us every value)\nRemember     list[index] gives us the value at that index\, even inside for loops\n\nHomework\n\nOnly https://www.ayclogic.com/animal-list-and-for-loop-exercises/
URL:https://www.ayclogic.com/event/2-pm-intro-to-python-sebastian-6/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221015T100000
DTEND;TZID=America/Los_Angeles:20221015T110000
DTSTAMP:20260508T095644
CREATED:20221015T044313Z
LAST-MODIFIED:20221022T013427Z
UID:15777-1665828000-1665831600@www.ayclogic.com
SUMMARY:10 AM - Intro To Python - Indo - Gamas
DESCRIPTION:Today We Do\n\nWe reviewed List homework from page 42 and 43.\nWe learned about For Loop. How to use for loop to go through each element inside a list.\nHow to put if else statement inside a list.\n\nHomework\n\nCreate Oct15_ForLoopListHomework.py\nDo the exercises from https://www.ayclogic.com/animal-list-and-for-loop-exercises/\nAlso copy codes from page 54.
URL:https://www.ayclogic.com/event/10-am-intro-to-python-indo-gamas-4/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221015T090000
DTEND;TZID=America/Los_Angeles:20221015T100000
DTSTAMP:20260508T095644
CREATED:20221015T171251Z
LAST-MODIFIED:20221015T171251Z
UID:15786-1665824400-1665828000@www.ayclogic.com
SUMMARY:9AM - Intro to Python - Saagar
DESCRIPTION:Today we did:\n\nCovered more examples of functions with return values. Did 3 problems together as a group\nHad each student write their own functions to solve a problem\nIntroduction to random module and to the randint and choice functions\nrandint – used to randomly generate a number in a range\nchoice – randomly choose a value from a list\n\nHomework\nIn a file called StarWarsRandomHW.py\, do the following problems from https://www.ayclogic.com/intro-to-python/star-wars-problem/
URL:https://www.ayclogic.com/event/9am-intro-to-python-saagar-10/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221014T190000
DTEND;TZID=America/Los_Angeles:20221014T200000
DTSTAMP:20260508T095644
CREATED:20221015T024821Z
LAST-MODIFIED:20221015T024821Z
UID:15774-1665774000-1665777600@www.ayclogic.com
SUMMARY:7 PM - Python Game Development - Gamas
DESCRIPTION:Homework\n\nIn Shoot Balloon project\, use target sprite inside main.py so target will appear on the screen.\nContinue on your team project
URL:https://www.ayclogic.com/event/7-pm-python-game-development-gamas-10/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221012T180000
DTEND;TZID=America/Los_Angeles:20221012T190000
DTSTAMP:20260508T095644
CREATED:20221013T020045Z
LAST-MODIFIED:20221018T022141Z
UID:15739-1665597600-1665601200@www.ayclogic.com
SUMMARY:6 PM - Python OOP - Gamas
DESCRIPTION:Homework\n\nCreate Oct12_LoopingThroughDictionaryHomework.py\nCopy codes from page 100\, 101\, 102.\nCreate Oct12_PhoneBookDictionary.py  and do exercise from below. No need to do “3. List all phone numbers” .\n\nhttps://www.ayclogic.com/phone-book-system/
URL:https://www.ayclogic.com/event/6-pm-python-oop-gamas-2/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221011T173000
DTEND;TZID=America/Los_Angeles:20221011T183000
DTSTAMP:20260508T095644
CREATED:20221012T015750Z
LAST-MODIFIED:20221012T015750Z
UID:15719-1665509400-1665513000@www.ayclogic.com
SUMMARY:5:30 PM - Intro To Python - Gamas
DESCRIPTION:Today We Did\n\nWe went over how to create face function properly. We learned how to make functions reusable and useful by adding useful parameters.\nWe learned how to create slanted rectangle by using setheading.\nWe learned about turtle directions.\n\nHomework\n\nCreate Oct11_DrawFace2Homework.py\nInside the file\, copy the rectangle and circle functions from the one that we did in the class.\nInside the file\, create a new function draw_face2. Introduce appropriate parameters\, that will enable user to specify the location of the face when calling the functions. This is very similar to face function which we did in the class.\nEach time the draw_face2 function is called\, it will draw one face. If call the function twice\, then it will draw 2 faces and so on.\nAlso please submit a turtle project proposal. A Turtle project proposal is a drawing of what you want to eventually make using Python turtle module. It is a hand drawing in a piece of paper. Please color your drawing accordingly. Alternatively\, you can do digital drawing if you want in your favorite image editor like photoshop\,\n\nYour proposal has to follow criteria in here: https://www.ayclogic.com/intro-to-python-final-project-criteria/\nThis is sample of project proposal: \nThis project is 20% of your class grade and this proposal is 10% of your project grade.\nCheckout projects done by other students in https://www.ayclogic.com/python-digital-illustrations/
URL:https://www.ayclogic.com/event/530-pm-intro-to-python-gamas/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221008T150000
DTEND;TZID=America/Los_Angeles:20221008T160000
DTSTAMP:20260508T095644
CREATED:20221008T231117Z
LAST-MODIFIED:20221008T231117Z
UID:15617-1665241200-1665244800@www.ayclogic.com
SUMMARY:3 PM – Intro To Python – Sebastian
DESCRIPTION:Today We Did\n\nlist.insert(index\, value) puts value at index of where it would be once added\nlist.append(value) puts value at end of list\nlist.remove(value) removes one of that value from list\nlist.pop(index) removes the value at the index\nReplace: list[index] = newValue\n\nHomework\n\nPage 38 to 41: access\, modify\, append\, remove \nTRY IT YOURSELF from page 42: 3-4\, 3-5\, 3-6
URL:https://www.ayclogic.com/event/3-pm-intro-to-python-sebastian-7/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221008T140000
DTEND;TZID=America/Los_Angeles:20221008T150000
DTSTAMP:20260508T095644
CREATED:20221008T215625Z
LAST-MODIFIED:20221008T215625Z
UID:15613-1665237600-1665241200@www.ayclogic.com
SUMMARY:2 PM – Intro To Python – Sebastian
DESCRIPTION:Today We Did\n\nlist.pop(index) removes item at index\nlist.insert(index\, value) puts a value at an index\nlist.append(value) puts a value at the end of a list\nlist.remove(value) removes one of that value from list\nReplace value at index with:     list[index] = newValue\n\nHomework\n\nPage 38 to 41: access\, modify\, append\, remove \nTRY IT YOURSELF from page 42: 3-4\, 3-5\, 3-6\nIf you want the challenge\, try: Tell Me Your Age homework (ONLY number 1)
URL:https://www.ayclogic.com/event/2-pm-intro-to-python-sebastian-5/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221008T090000
DTEND;TZID=America/Los_Angeles:20221008T100000
DTSTAMP:20260508T095644
CREATED:20221008T172923Z
LAST-MODIFIED:20221008T172923Z
UID:15591-1665219600-1665223200@www.ayclogic.com
SUMMARY:9AM - Intro to Python - Saagar
DESCRIPTION:Today we did:\n\nWent into functions with return values in detail: why they are needed\, how we use them\, how the location of return affects what code runs\nexamples of functions with return value we’ve seen like input()\nran through examples together of writing and calling functions with return values and doing something with that return value\n\nHomework\nIn a file called FunctionsWIthReturnValueHW.py\, do the following: \n\nhttps://www.ayclogic.com/list-inputs-if-and-else-loops-and-function/ number 7\nPage 138\, 139 from textbook
URL:https://www.ayclogic.com/event/9am-intro-to-python-saagar-9/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221007T190000
DTEND;TZID=America/Los_Angeles:20221007T200000
DTSTAMP:20260508T095644
CREATED:20221008T043201Z
LAST-MODIFIED:20221008T043201Z
UID:15579-1665169200-1665172800@www.ayclogic.com
SUMMARY:7 PM - Python Game Development - Gamas
DESCRIPTION:Homework\n\nContinue with your team project according google drive.
URL:https://www.ayclogic.com/event/7-pm-python-game-development-gamas-9/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221004T173000
DTEND;TZID=America/Los_Angeles:20221004T183000
DTSTAMP:20260508T095644
CREATED:20221005T020838Z
LAST-MODIFIED:20221005T021311Z
UID:15457-1664904600-1664908200@www.ayclogic.com
SUMMARY:5:30 PM – Intro To Python – Richard
DESCRIPTION:Today We Did:\n\nWe finished building our robot with 3 arms by using our left_arm and right_arm functions.\nWe reviewed for loops and then learned how to draw a circle.\n\nCode from class (Oct4_FinishedRobotArms.py): https://drive.google.com/drive/folders/1HS7Vf6hpZPBjnJQyanP75hIa6Krz4YsN \nThe top half contains the code needed to do the homework. The bottom half (commented out) is just the finished robot code in case you want to look at it. \nHomework:\n\nMake a function called “face” that draws a circular face\, 2 circular eyeballs\, 2 circular pupils\, and a rectangle mouth.\n\nPlease make use of the rectangle and circle functions we have created\, and by passing in the face function parameters instead of manually plugging in numbers to the rectangle and circle functions. Think about what parameters our face function should have. See reference below. \n \nPlease email me if you have any questions: richardli@ayclogic.com
URL:https://www.ayclogic.com/event/530-pm-intro-to-python-richard-2/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221001T150000
DTEND;TZID=America/Los_Angeles:20221001T160000
DTSTAMP:20260508T095644
CREATED:20221001T233903Z
LAST-MODIFIED:20221001T233903Z
UID:15393-1664636400-1664640000@www.ayclogic.com
SUMMARY:3 PM - Intro to Python - Sebastian
DESCRIPTION:Today We Did\n\nLists (bag = [])\nGet length of list using len() (len(bag))\nLearned list indices (index) start from 0\nGet one item using bag[index]\n\nHomework\n\nPage 114 to 116\nPage 117 . TRY IT YOURSELF: 7-1\, 7-2
URL:https://www.ayclogic.com/event/3-pm-intro-to-python-sebastian-6/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221001T140000
DTEND;TZID=America/Los_Angeles:20221001T150000
DTSTAMP:20260508T095644
CREATED:20221001T233902Z
LAST-MODIFIED:20221001T233902Z
UID:15388-1664632800-1664636400@www.ayclogic.com
SUMMARY:2 PM – Intro To Python – Sebastian
DESCRIPTION:Today We Did\n\nLists (bag = [])\nGet length of list using len() (len(bag))\nLearned that list indices (index) start counting from 0\nLearned how to take one value from a list using an index (bag[0])\n\nHomework\n\nPage 114 to 116\nPage 117 . TRY IT YOURSELF: 7-1\, 7-2
URL:https://www.ayclogic.com/event/2-pm-intro-to-python-sebastian-4/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221001T140000
DTEND;TZID=America/Los_Angeles:20221001T150000
DTSTAMP:20260508T095644
CREATED:20221001T221801Z
LAST-MODIFIED:20221001T221801Z
UID:15394-1664632800-1664636400@www.ayclogic.com
SUMMARY:2 PM - Intro To Python - Gamas
DESCRIPTION:Today We Did\n\nWe reviewed last week homeworks.\nWe reviewed more details about PyVCF3 module.\n\nHomework\n\nInside VCF_file_reader_example.py do the following\n\nRead some fields from the INFO column like this\n\n\nrecord.INFO['CLNSIG'][0] # this is to read CLNSIG field inside INFO column\n\nrecord.INFO['CLNDN'][0] # this is to read CLNDN field inside INFO column\n\n\n\nCount records that whose INFO has CLNSIG equal to Uncertain_significance\nCount records that whose INFO has CLNSIG equal to Likely_benign\nCount records that whose INFO has CLNDN equal to not_provided\n\n\nCreate Oct1_DictionaryHomework.py\n\ncopy codes from page 92 to 96
URL:https://www.ayclogic.com/event/2-pm-intro-to-python-gamas-22/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221001T100000
DTEND;TZID=America/Los_Angeles:20221001T110000
DTSTAMP:20260508T095644
CREATED:20221001T180455Z
LAST-MODIFIED:20221001T180455Z
UID:15366-1664618400-1664622000@www.ayclogic.com
SUMMARY:10 AM - Minecraft Modding with Java - Gamas
DESCRIPTION:Today We Did\n\nWe integrated our custom animal (Saturn Cat / Saturn Turtle) into minecraft\, but we get an error when summoning. I will fix this next week.\nWe added CEM Template Loader plugin in blockbench\nWe loaded minecraft Fox entity in blockbench.\n\nHomework\n\nCustomized minecraft Fox entity in blockbench so it will look better.
URL:https://www.ayclogic.com/event/10-am-minecraft-modding-with-java-gamas-9/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20221001T100000
DTEND;TZID=America/Los_Angeles:20221001T110000
DTSTAMP:20260508T095644
CREATED:20221001T040705Z
LAST-MODIFIED:20221001T040705Z
UID:15362-1664618400-1664622000@www.ayclogic.com
SUMMARY:10 AM - Intro To Python - Indo - Gamas
DESCRIPTION:Today We Did\n\nWe reviewed input from shell. All inputs from shell are String data type. Even if you enter a number\, it will still be String. If you want to compare to integer\, you first have to convert a String (input from shell) into an Integer using int().\nWe learned a little bit about List.\n\nHomework\n\nCreate Oct1_ListHomework.py\nCopy codes from page 34 to 41.
URL:https://www.ayclogic.com/event/10-am-intro-to-python-indo-gamas-2/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220928T180000
DTEND;TZID=America/Los_Angeles:20220928T190000
DTSTAMP:20260508T095644
CREATED:20220929T021044Z
LAST-MODIFIED:20220929T025035Z
UID:15252-1664388000-1664391600@www.ayclogic.com
SUMMARY:6 PM - Python OOP - Gamas
DESCRIPTION:Today We Did\n\nWe installed Python 3.10\nWe installed Pycharm community edition\nWe started learning about Python dictionary.\n\nHomework\n\nCreate new python file in Pycharm. Sep28_DictionaryHomework.py\nCopy codes from page 92 to 95.
URL:https://www.ayclogic.com/event/6-pm-python-oop-gamas/
CATEGORIES:OOP Python,Python Class
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220927T173000
DTEND;TZID=America/Los_Angeles:20220927T183000
DTSTAMP:20260508T095644
CREATED:20220928T015605Z
LAST-MODIFIED:20220928T034103Z
UID:15217-1664299800-1664303400@www.ayclogic.com
SUMMARY:5:30 PM – Intro To Python – Richard
DESCRIPTION:Today We Did:\n\nWe continued building our robot\, but this time making our code more re-usable.\nWe learned how to call a function inside another function\, and how to re-use parameters.\n\nCode from class (Sep27_RobotArms.py): https://drive.google.com/drive/folders/1HS7Vf6hpZPBjnJQyanP75hIa6Krz4YsN \nHomework:\n\nFinish implementing the left_arm function. But don’t just manually plug in numbers into the rectangle function. Call the rectangle function using the parameters of the left_arm function.\nImplement the right_arm function using the same idea as the left_arm function. Hint: They should be very similar.\nAfter you finish the left_arm and right_arm functions\, call them both 3 times. Try to create the picture below:\n\nHint: You will need to call each function 3 times\, but you need to modify one of the parameters.
URL:https://www.ayclogic.com/event/530-pm-intro-to-python-richard/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220924T150000
DTEND;TZID=America/Los_Angeles:20220924T160000
DTSTAMP:20260508T095644
CREATED:20220924T231036Z
LAST-MODIFIED:20220927T235826Z
UID:15167-1664031600-1664035200@www.ayclogic.com
SUMMARY:3 PM – Intro To Python – Sebastian
DESCRIPTION:Today We Did\n\nLearned how to get input from the shell: input()\nLearned how to add part of one string to another (+=)\nReviewed if\, elif\, else\n\nHomework\n\nHomework due in Google Drive Friday night before class\nCreate a new Python file SEP24_IfElseHomework.py in Thonny.\nPage 84\, 5-3\, 5-4\nNumber 3 only from https://www.ayclogic.com/list-inputs-if-and-else-loops-and-function/
URL:https://www.ayclogic.com/event/3-pm-intro-to-python-sebastian-5/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220924T140000
DTEND;TZID=America/Los_Angeles:20220924T150000
DTSTAMP:20260508T095644
CREATED:20220925T012628Z
LAST-MODIFIED:20220925T012628Z
UID:15171-1664028000-1664031600@www.ayclogic.com
SUMMARY:2 PM - Intro To Python - Gamas
DESCRIPTION:Today We Did\n\nWe reviewed the 1st quiz result.\nWe learned how to add Python dependency PyVCF3 module.\nWe learned how to read VCF file.\n\nHomework\n\nCreate Sep24_PythonHomework.py\nDo question #1\, #2\, #3 only from https://www.ayclogic.com/list-inputs-if-and-else-loops-and-function/\nDo question #9 and #10 from https://www.ayclogic.com/intro-to-python-exercises/
URL:https://www.ayclogic.com/event/2-pm-intro-to-python-gamas-21/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220924T140000
DTEND;TZID=America/Los_Angeles:20220924T150000
DTSTAMP:20260508T095644
CREATED:20220924T215752Z
LAST-MODIFIED:20220927T235834Z
UID:15162-1664028000-1664031600@www.ayclogic.com
SUMMARY:2 PM – Intro To Python – Sebastian
DESCRIPTION:Today We Did\n\nLearned how to get input from the shell: input()\nLearned how to add part of one string to another (+=)\nReviewed if\, elif\, else\n\nHomework\n\nHomework due in Google Drive Friday night before class\nCreate a new Python file SEP24_IfElseHomework.py in Thonny.\nPage 84\, 5-3\, 5-4\nNumber 3 only from https://www.ayclogic.com/list-inputs-if-and-else-loops-and-function/
URL:https://www.ayclogic.com/event/2-pm-intro-to-python-sebastian-3/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220924T090000
DTEND;TZID=America/Los_Angeles:20220924T100000
DTSTAMP:20260508T095644
CREATED:20220924T170811Z
LAST-MODIFIED:20220930T020452Z
UID:15153-1664010000-1664013600@www.ayclogic.com
SUMMARY:9AM - Intro to Python - Saagar Mahadev
DESCRIPTION:Today we did:\n\nReviewed the quiz in detail and went over common mistakes and how to prevent them in the future\nIntroduced functions with no return values – how to call define them\, call them\, use parameters\, why they’re useful\n\nHomework\n\nHomework: 130\, 131 (TRY IT YOURSELF)\, 132
URL:https://www.ayclogic.com/event/9am-intro-to-python-saagar-mahadev/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220920T173000
DTEND;TZID=America/Los_Angeles:20220920T183000
DTSTAMP:20260508T095644
CREATED:20220921T014643Z
LAST-MODIFIED:20220927T002239Z
UID:15070-1663695000-1663698600@www.ayclogic.com
SUMMARY:5:30 PM - Intro To Python - Parna
DESCRIPTION:Today We Did\n\nWe started robot builder project.\nWe learned when we want to control the color\, position and width and height of rectangles\, we have to introduced parameters into draw_rectangle function and we have to utilize these parameters inside the function.\n\nHomework\n\nFinish the robot shapes by using combination of different rectangles. DO NOT do the left arm or the right arm. Look at below pictures for references\n\nAlso if you guys can please be creative and make the robot better. If you guys do a good job\, I can give you guys up to 2 bonus points for your final. This is an example of 2 bonus points looks like. Below is supposed to be a simplified version of iron man robot
URL:https://www.ayclogic.com/event/530-pm-intro-to-python-parna-35/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220917T150000
DTEND;TZID=America/Los_Angeles:20220917T160000
DTSTAMP:20260508T095644
CREATED:20220917T230133Z
LAST-MODIFIED:20220917T230700Z
UID:15018-1663426800-1663430400@www.ayclogic.com
SUMMARY:3 PM – Intro To Python – Sebastian
DESCRIPTION:Today We Did\n\nLearned the difference between = (gives variable a value) and == (checks if both sides are the same).\nLearned about != (checks if the right side is not the same as the left side)\nLearned about if and else (otherwise)\nLearned about or (you can choose either or\, but always try to make it true if one of the options can be true)\nLearned about and (you can choose both\, but can only be true when both are true)\n\nHomework\n\nCreate a new Python file SEP17_IfElseHomework.py in Thonny.\nPages 79-81 from the textbook\nIf you have questions\, you can email me: sebastian@ayclogic.com.\n\n 
URL:https://www.ayclogic.com/event/3-pm-intro-to-python-sebastian-4/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220917T140000
DTEND;TZID=America/Los_Angeles:20220917T150000
DTSTAMP:20260508T095644
CREATED:20220917T215618Z
LAST-MODIFIED:20220917T215618Z
UID:15000-1663423200-1663426800@www.ayclogic.com
SUMMARY:2 PM – Intro To Python – Sebastian
DESCRIPTION:Today We Did\n\nLearned how to check if things are the same\, and if things are not the same (==\, !=)\nLearned if\, elif (otherwise if)\, and else (otherwise)\nLearned the difference between == (checking if things are the same) and = (giving variables a value)\n\nHomework\n\nCreate a new Python file SEP17_IfElseHomework.py in Thonny.\nPages 79-81 from the textbook\nIf you have questions\, you can email me: sebastian@ayclogic.com.
URL:https://www.ayclogic.com/event/2-pm-intro-to-python-sebastian-2/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220917T090000
DTEND;TZID=America/Los_Angeles:20220917T100000
DTSTAMP:20260508T095644
CREATED:20220917T160817Z
LAST-MODIFIED:20220917T160817Z
UID:14992-1663405200-1663408800@www.ayclogic.com
SUMMARY:9AM - Intro to Python - Saagar
DESCRIPTION:Today we did:\n\nFirst quiz – data types\, for/while loops\, input from shell\, if else\, lists\n\nHomework\n\nNo homework!!! Enjoy your week!
URL:https://www.ayclogic.com/event/9am-intro-to-python-saagar-7/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20220916T190000
DTEND;TZID=America/Los_Angeles:20220916T200000
DTSTAMP:20260508T095644
CREATED:20220917T043522Z
LAST-MODIFIED:20220917T043522Z
UID:14985-1663354800-1663358400@www.ayclogic.com
SUMMARY:7 PM - Python Game Development - Gamas
DESCRIPTION:Today We Did\n\nWe went over how to add count down to Flappy Bird game.\nWe added sound effect when Bird and Coin collide.\nWe added Game Win page when count down goes to 0 or less and score is 5 or bigger.\n\nHomework\n\nContinue on your team project according to project plan in the google doc.
URL:https://www.ayclogic.com/event/7-pm-python-game-development-gamas-7/
CATEGORIES:Python Class,Python Game Development
END:VEVENT
END:VCALENDAR