American Young Coder

AYC logo

2 PM – Intro To Python – Sebastian

Today We Did list.pop(index) removes item at index list.insert(index, value) puts a value at an index list.append(value) puts a value at the end of a list list.remove(value) removes one of that value fromRead More...

3 PM – Intro To Python – Sebastian

Today We Did list.insert(index, value) puts value at index of where it would be once added list.append(value) puts value at end of list list.remove(value) removes one of that value from list list.pop(index) removesRead More...

5:30 PM – Intro To Python – Gamas

Today We Did We went over how to create face function properly. We learned how to make functions reusable and useful by adding useful parameters. We learned how to create slanted rectangleRead More...

6 PM – Python OOP – Gamas

Homework Create Oct12_LoopingThroughDictionaryHomework.py Copy codes from page 100, 101, 102. Create Oct12_PhoneBookDictionary.py  and do exercise from below. No need to do "3. List all phone numbers" . https://www.ayclogic.com/phone-book-system/

9AM – Intro to Python – Saagar

Today we did: Covered more examples of functions with return values. Did 3 problems together as a group Had each student write their own functions to solve a problem Introduction to randomRead More...

2 PM – Intro To Python – Sebastian

Today We Did For loops using range() (gives us every index) For each loops (gives us every value) Remember     list gives us the value at that index, even inside for loopsRead More...

2 PM – Intro To Python – Gamas

Today We Did We finished reviewing Dictionary homework. We reviewed phone book small program and how to utilize Python Dictionary to store and search phone numbers. We learned how to read errorRead More...

3 PM – Intro To Python – Sebastian

Today We Did Learned about range(value) function, gives list from 0 to value - 1 (ex: range(4) gives ) Learned about for each loops, gives every value in list Learned about forRead More...

5:30 PM – Intro To Python – Gamas

Today We Did We finished Face2 shape. We created draw_letter_A function inside Oct18_DrawLetterAndOctagon.py. We copied draw_octagon function from Sep13_Turtle4ShapesHomework.py into Oct18_DrawLetterAndOctagon.py and added x and y coordinates. Homework Start making progress forRead More...