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:20241010T180000
DTEND;TZID=America/Los_Angeles:20241010T190000
DTSTAMP:20260424T121531
CREATED:20241011T020352Z
LAST-MODIFIED:20241011T020352Z
UID:27035-1728583200-1728586800@www.ayclogic.com
SUMMARY:6 PM – Intro to Python – Daniel
DESCRIPTION:What We Did\n\nWe went over fixing python errors in class today.\nWe made the password generator together in class.\n\nHomework\n\nCreate a new file Oct_10_FixingPythonErrors.py and fix this code\, until the output matches – https://www.ayclogic.com/fixing-python-bugs/\nIf you have any questions\, email me at dmeng@ayclogic.com
URL:https://www.ayclogic.com/event/6-pm-intro-to-python-daniel-32/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241010T180000
DTEND;TZID=America/Los_Angeles:20241010T190000
DTSTAMP:20260424T121531
CREATED:20241011T034725Z
LAST-MODIFIED:20241011T034958Z
UID:27038-1728583200-1728586800@www.ayclogic.com
SUMMARY:6pm- Intro to Python- Joshua Widjanarko
DESCRIPTION:Today We Did:\n\n Reviewed Fix 2 Homework\n\nRemember that it is <= or >=   not  =>   =<\nIf/Elif/else reminder: remember the idea of boxes\n\nIf is start \, elif in the middle(if needed)\, else in the end( if needed)\n\n\nint(“4”) is needed if you are using numbers for comparison.\nTest your code with all  kinds of numbers. You might find Bug/Error if you type a specific value in\nRemember three steps\n\nFind the location (Click on the blue line\nLook at the bottom of the error function\n\n\n\n\nRemember to do your homework quiz 2 practice (Bug free)\n\nHomework:\nIn another new file\, “quiz_2_practice”\, do the following: \n\nhttps://www.ayclogic.com/intro-to-python-exercises-for-quiz-2/\n\nRecommended Studying (quiz_2_additional Practice.py) \nQuestion 1 \nGoal: Write the function gather_names_2 with the int variable max_names. gather_names will ask people for their name\, and then add that names onto a list until someone types in “quit” or the list has a number of people equal the max_names. You will return that list of names \nYou will then call gather_names\, and then randomely chose a single name in that list. \nprint the phrase “<Randomly Chosen Name>\, you have won a prize” \nThe Following topics question also  might be useful to brush up on \n\nGetting a random number or a random object from a list\nhow to write for loops/while loops to navigate lists\nhow to access\, append\, remove things from lists\nhow to find out how long lists are\nhow to ask for input\n\n  \n  \nNOTES:\nIf you have any questions feel free to email me jwidjanarko@ayclogic.com 
URL:https://www.ayclogic.com/event/6pm-intro-to-python-joshua-widjanarko-5/
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20241010T183000
DTEND;TZID=America/Los_Angeles:20241010T193000
DTSTAMP:20260424T121531
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:20241010T190000
DTEND;TZID=America/Los_Angeles:20241010T200000
DTSTAMP:20260424T121531
CREATED:20241011T033115Z
LAST-MODIFIED:20241011T033115Z
UID:27041-1728586800-1728590400@www.ayclogic.com
SUMMARY:7PM - Intro To Python - Joshua
DESCRIPTION:Today We Did\n\n\n\n\n\n Review How to write a list:  name_of_list = [ 0\, “string”\, “string2”]\nHow to add things to list\n\nWay 1:  Appending -> name_of_list.append(new_object)\nWay 2 :  Inserting  ->    name_of_list.insert( 1\, new_object)\n\n\nHow To replace things in lists\n\n name_of_list[1] = new_object\n\n\nHow to Delete things\n\nWay 1: Delete  – >del name_of_list[0]\nWay 2 Pop    ->    x = name_of_list.pop()\n\nIf you want to pop a specific\, put its location within the parentheses  Ex. .pop(1)\nPopping is good if you need to use it later\n\n\nWay 3: remove  ->  name_of_list.remove(“string”)\n\nAllows you to remove the first instance of it\nUseful if you know the object/data/string but not Where it is\n\n\n\n\n\n\n\nHomework\n\n\n\nLabel this October_10_list_hw2.py\n\n3rd edition: TRY IT YOURSELF from page 41-42: 3-4\, 3-5\, 3-6\n\n\nRemember to put it in your drive
URL:https://www.ayclogic.com/event/7pm-intro-to-python-joshua-2/
END:VEVENT
END:VCALENDAR