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:20190310T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20191103T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20190202T150000
DTEND;TZID=America/Los_Angeles:20190202T160000
DTSTAMP:20260617T061213
CREATED:20190203T014700Z
LAST-MODIFIED:20190209T023136Z
UID:730-1549119600-1549123200@www.ayclogic.com
SUMMARY:3PM Python Level 1
DESCRIPTION:We went over Loopy Loop chapter from page 32 to 35.\n\nWe learned about “for loops”.\nWe learned about “while loops”.\nWe learned about “Infinite loops”.\nWe learned about “Nested loops”.\n\n\nHomeworks:\n\n\n\nUsing “for loops” print “Are we there yet?” to shell 5 times. The result would look like below\n\n\nAre we there yet?\nAre we there yet?\nAre we there yet?\nAre we there yet?\nAre we there yet?\n\n\n\nChange the code in the previous question to also prefix “Are we there yet” with a number like the following:\n\n\n2 Are we there yet?\n3 Are we there yet?\n4 Are we there yet?\n5 Are we there yet?\n6 Are we there yet?\n\n\n\nUsing “while loops” do the following forever:\n\nPrint “Give me your age?”\nIf the user enters “bye” quit the loop. Look at page 34 for code on how to break from the infinite loop.\nIf the user enters 0 print “You are a newborn baby”.\nIf the user enters any number smaller than 4 then print “You are a toddler”.\nIf the user enters any number smaller than 13 then print “You are a kid”.\nIf the user enters any number smaller than 20 then print “You are a teenager”.\nIf the user enters any number smaller than 40 then print “You are an adult”.\nIf the user enters any number greater than or equal to 40 then print “Dude!! You are old.”\nRepeat the process to #1 (“Give me your age?”)\n\n\nUsing two nested “for loops” print the following:\nready\nready\nready\nJump\n\nready\nready\nready\nJump\n\nUsing two nested “for loops” print the following:\n1\n2\n3\ngo\n\n1\n2\n3\ngo\n\n1\n2\n3\ngo
URL:https://www.ayclogic.com/event/3pm-python-level-1-7/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20190202T180000
DTEND;TZID=America/Los_Angeles:20190202T193000
DTSTAMP:20260617T061213
CREATED:20190203T024043Z
LAST-MODIFIED:20190203T024058Z
UID:734-1549130400-1549135800@www.ayclogic.com
SUMMARY:6PM Python Level 1
DESCRIPTION:Python Quiz Level 1 – 2nd take. 1.5 hours.
URL:https://www.ayclogic.com/event/6pm-python-level-1-13/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20190204T170000
DTEND;TZID=America/Los_Angeles:20190204T180000
DTSTAMP:20260617T061213
CREATED:20190205T022201Z
LAST-MODIFIED:20190205T022201Z
UID:737-1549299600-1549303200@www.ayclogic.com
SUMMARY:5PM Python Level 1
DESCRIPTION:We installed Thonny Python editor https://thonny.org/\nWe learned about Python variables\, different data types: Integer\, Float/Double\, Boolean\, String\, and List/Array.\nWe learned how to concatenate Strings and concatenate String and Integer.\nHomeworks:\n\nIf you have not installed Thonny Python editor in your laptop\, please do so by downloading and installing from https://thonny.org/\nDo page 28 to 31 in “Coding Projects In Python” by dk.com.\n\nDo everything in a file called MakingDecisions-Feb42019.py file.
URL:https://www.ayclogic.com/event/5pm-python-level-1-3/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20190206T180000
DTEND;TZID=America/Los_Angeles:20190206T190000
DTSTAMP:20260617T061213
CREATED:20190207T030122Z
LAST-MODIFIED:20190207T030939Z
UID:740-1549476000-1549479600@www.ayclogic.com
SUMMARY:6PM Python Level 1
DESCRIPTION:Homeworks: \n\nWe went completed “Making Decisions” chapter from page 28 to 31.\nCreate a program (making_decisions_hw_feb_6.py) that will do the following:\n\nAsk user “Give me your age? “\nIf the user enters 0 print “You are a newborn baby”.\nIf the user enters any number smaller than 4 then print “You are a toddler”.\nIf the user enters any number smaller than 13 then print “You are a kid”.\nIf the user enters any number smaller than 20 then print “You are a teenager”.\nIf the user enters any number smaller than 40 then print “You are an adult”.\nIf the user enters any number greater than or equal to 40 then print “Dude!! You are old.”.
URL:https://www.ayclogic.com/event/6pm-python-level-1-14/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20190208T170000
DTEND;TZID=America/Los_Angeles:20190208T180000
DTSTAMP:20260617T061213
CREATED:20190209T023441Z
LAST-MODIFIED:20190209T023441Z
UID:745-1549645200-1549648800@www.ayclogic.com
SUMMARY:5PM Python Level 1
DESCRIPTION:We went over the previous class homework\, “Give Me Your Age?” https://www.ayclogic.com/event/6pm-python-level-1-14/\nWe went over Loopy Loop chapter from page 32 to 35.\n\nWe learned about “for loops”.\nWe learned about “while loops”.\nWe learned about “Infinite loops”.\nWe learned about “Nested loops”.\n\n\nHomeworks:\n\n\n\nUsing “for loops” print “Are we there yet?” to shell 5 times. The result would look like below\n\n\nAre we there yet?\nAre we there yet?\nAre we there yet?\nAre we there yet?\nAre we there yet?\n\n\n\nChange the code in the previous question to also prefix “Are we there yet” with a number like the following:\n\n\n2 Are we there yet?\n3 Are we there yet?\n4 Are we there yet?\n5 Are we there yet?\n6 Are we there yet?\n\n\n\nUsing “while loops” do the following forever:\n\nPrint “Give me your age?”\nIf the user enters “bye” quit the loop. Look at page 34 for code on how to break from the infinite loop.\nIf the user enters 0 print “You are a newborn baby”.\nIf the user enters any number smaller than 4 then print “You are a toddler”.\nIf the user enters any number smaller than 13 then print “You are a kid”.\nIf the user enters any number smaller than 20 then print “You are a teenager”.\nIf the user enters any number smaller than 40 then print “You are an adult”.\nIf the user enters any number greater than or equal to 40 then print “Dude!! You are old.”\nRepeat the process to #1 (“Give me your age?”)\n\n\nUsing two nested “for loops” print the following:\nready\nready\nready\nJump\n\nready\nready\nready\nJump\n\nUsing two nested “for loops” print the following:\n1\n2\n3\ngo\n\n1\n2\n3\ngo\n\n1\n2\n3\ngo
URL:https://www.ayclogic.com/event/5pm-python-level-1-4/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20190209T150000
DTEND;TZID=America/Los_Angeles:20190209T160000
DTSTAMP:20260617T061213
CREATED:20190210T032655Z
LAST-MODIFIED:20190216T231404Z
UID:765-1549724400-1549728000@www.ayclogic.com
SUMMARY:3PM Python Level 1
DESCRIPTION:We reviewed the Loopy Loops project from 32 to 35.\nWe reviewed last week homework about different kind of loops.\nWe started with a new lesson on how to create functions in python.\nHomework:\n\nCreate a function called “doSomething”. This function has no parameter:\n\nInside this function\, print “Hello “.\n\n\nCreate a function called “doSomething2”.This function has one parameter (“name”):\n\nInside this function\, combine/concatenate the word “Hello ” and the parameter “name”.\nWhen you call the function doSomething2(“Gamas”)\, it will print the following\n\n\nHello Gamas\n\n\n\nWhen you call the function doSomething2(“Ryan”)\, it will print the following\n\n\nHello Ryan\n\n\n\n\n\nCreate a function called “starwars”\, no parameter.\n\nCreate a new variable (“robots”)\, it is a List of String variable.\nThe value of the ”robots” variable is: “R2-D2”\, “C-3PO”\, “ASN-121”\, “WALL-E”\, “DATA”\, “BUMBLE-BEE”\nWhen this function is called\, it will print all of the elements inside the list. Use “for loop” to go through each element inside the list.\n\n\nR2-D2\nC-3PO\nASN-121\nWALL-E\nDATA\nBUMBLE-BEE
URL:https://www.ayclogic.com/event/3pm-python-level-1-8/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20190209T180000
DTEND;TZID=America/Los_Angeles:20190209T190000
DTSTAMP:20260617T061213
CREATED:20190210T025838Z
LAST-MODIFIED:20190210T025838Z
UID:761-1549735200-1549738800@www.ayclogic.com
SUMMARY:6PM Python Level 1
DESCRIPTION:We went over the Password Picker project from page 52 to 56.\nHomework:\n\nhttps://www.ayclogic.com/coding-in-python-level-1/star-wars-problem/
URL:https://www.ayclogic.com/event/6pm-python-level-1-15/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20190216T150000
DTEND;TZID=America/Los_Angeles:20190216T160000
DTSTAMP:20260617T061213
CREATED:20190217T012054Z
LAST-MODIFIED:20190217T012054Z
UID:788-1550329200-1550332800@www.ayclogic.com
SUMMARY:3PM Python Level 1
DESCRIPTION:We completed “Functions” chapter from page 44 to 47.\nWe started “Animal Quiz” on page 36.\nIf you want video of the class is available upon request.\nHomeworks:\n\nComplete “Animal Quiz” from page 36 to 41.
URL:https://www.ayclogic.com/event/3pm-python-level-1-9/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20190223T150000
DTEND;TZID=America/Los_Angeles:20190223T160000
DTSTAMP:20260617T061213
CREATED:20190223T235918Z
LAST-MODIFIED:20190224T034241Z
UID:813-1550934000-1550937600@www.ayclogic.com
SUMMARY:3PM Python Level 1
DESCRIPTION:We reviewed the Animal Quiz homework.\nWe started “Fixing Bugs” project from page 48 to 49.\nHomeworks:\n\nContinue “Fixing Bugs” project from page 50 to 51.\nAnd also do try to fix the following broken code:\n\nhttps://www.ayclogic.com/fixing-bugs/
URL:https://www.ayclogic.com/event/3pm-python-level-1-10/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20190223T180000
DTEND;TZID=America/Los_Angeles:20190223T190000
DTSTAMP:20260617T061213
CREATED:20190224T032536Z
LAST-MODIFIED:20190224T032536Z
UID:820-1550944800-1550948400@www.ayclogic.com
SUMMARY:6PM Python Level 1
DESCRIPTION:We reviewed Feb9_PasswordPicker.py.\nWe reviewed starwars homework: https://www.ayclogic.com/coding-in-python-level-1/star-wars-problem/\nWe went over the “Nine Lives” project from page 62 to 65.\n Homeworks:\n\nReview the “Nine Lives” project codes and come up with 3 questions each person. Make sure you understand the “While Loop” in that project.
URL:https://www.ayclogic.com/event/6pm-python-level-1-17/
CATEGORIES:Python Class,Python Level 1
END:VEVENT
END:VCALENDAR