Today We Did Learned the steps to fixing an error: Click bottom blue line Read error message Fix error and rerun Explored NameError, SyntaxError, IndentationError, IndexError, and TypeError Reviewed what "return" doesRead More...
Today We Did We finished Nov8_ShoppingCart.py program Homework Create a new file Nov29_RobuxShoppingCart.py. We are going to create something similar to Nov8_ShoppingCart.py, so if you are stuck with the below program, lookRead More...
Today We Did We went over Restaurant class homework We reviewed at Restaurant.set_number_served(sefl, num) method that will change Restaurant.number_served attribute. We reviewed at Restaurant.increment_number_served(self, num) method that will increase Restaurant.number_served attribute. WeRead More...
Today We Did Learned how to get input from the shell: input() Reviewed how to append strings to eachother Reviewed if, elif, else with input() Learned that input() always becomes a stringRead More...
Today We Did We did Dec1_TurtleBasic.py. We drew a Square shape with a Turtle module. We created draw_square(color) function. Homework Create Dec1_Turtle4ShapesHomework.py And do exercises according to https://www.ayclogic.com/draw-4-shapes-using-turtle-module/
Homework When the bug mode change to DIZZY mode, Stop the chirping sound. Create Landing page with PLAY and CREDIT buttons. Use assets/ballon_title.png for the landing page. Create CREDIT page.
Homework Create Dec12_Private_ListHomework.py. Copy codes from page 37 to 38. Create a list of monsters: “dragon”, “phoenix”, “minotaur”, “hydra” using the list print “DRAGON is a powerful monster”. Get the first elementRead More...
Today we did: Reviewed for the quiz Homework Only homework is to prepare for the quiz. Feel free to reach out if you need any additional help or practice problems.
Today We Did We reviewed the 1st quiz result. If you guys don't receive my quiz feedbacks, please let me know. Ask your parents to text me. Homework Create a new pythonRead More...
Today We Did How functions work (parameters, arguments) How to call functions In case you need anything, feel free to email me at sebastian@ayclogic.com Homework Name your homework DEC3_functions_hw.py Homework: https://www.ayclogic.com/list-inputs-if-and-else-loops-and-function/
Today We Did How functions work (parameters, arguments) How to call functions In case you need anything, feel free to email me at sebastian@ayclogic.com Homework Name your homework DEC3_functions Homework: https://www.ayclogic.com/list-inputs-if-and-else-loops-and-function/
Today We Did Remember the important 3 steps to debugging: Click the bottom blue line Read the error message Fix the error and rerun Debugged the code here In case you needRead More...
Homework Inside Nov29_RobuxShoppingCart.py Call make_purchase function for HAIR and VIP Server products. This is very similar on how you call make_purchase for HAT product. Add code that will implement "4. Add moreRead More...
Homework All of class files are uploaded to google drive which you can access here: https://drive.google.com/drive/folders/1yj3auNLld74NNzu98nptj8Y2BN3JF0z0 Henry, please do your homework 2 weeks ago from page 167. For everyone, do the followingRead More...
Today We Did Creating a list List functions (.append(), .remove(), .pop(), del, .insert()) In case you need anything, feel free to email me at sebastian@ayclogic.com Homework Name your homework DEC7_input1, and DEC7_input2Read More...
Homework Create Dec9_ForLoopListHomework.py Copy code from page 50 to 52. Do number 5, 6 and 7 only from this exercise: https://www.ayclogic.com/intro-to-python-exercises/ Create Dec9_ForLoopRangeHomework.py Copy code from page 57.
Today We Did Reviewed previous quiz and explained answers In case you need anything, feel free to email me at sebastian@ayclogic.com Homework Name your homework DEC10_functions_hw Homework: From the book, try 130,Read More...
Today We Did Reviewed previous quiz and explained answers In case you need anything, feel free to email me at sebastian@ayclogic.com Homework Name your homework DEC10_functions_hw Homework: From the book, try 130,Read More...
Next week on December 20, it will be 2 hours final test. It is going to be open book and you can use Thonny to test your codes Study the following topicsRead More...
Homework Inside Dec7_GroceryShoppingCartV4.py, create a new method that would do list all frozen items when user checkout. Make sure to choose a good meaningful name for this method. Call this method fromRead More...
Today We Did We continued with Turtle topic. We introduced a function draw_rectangle and made the function to have 5 parameters: x, y, width, height, color. This way the functions can beRead More...
Homework Create Dec15_Private_ForLoopInRangeHomework2.py translate this Scratch code into Python. Use for loop in range. Create Dec15_WhileLoopHomework.py Copy codes 118 to 121.
Homework These homeworks are due on 12/19 - Monday at 5 PM. Create a new python file Dec16_HowOldAreYouHomework.py Do exercises number 1 only from https://www.ayclogic.com/tell-me-your-age/ . This is an input from shellRead More...
Today We Did We learned how to kill bug chirping sound when bug goes off the screen. We added count down in the screen. We learned how to kill bug chirping soundRead More...
Today we did: Reviewed the Quiz Started graphical interfaces with Turtle like setting background color, drawing shapes, etc. Announcements No class until January 7th. Holidays for next 2 weeks. Homework In aRead More...
Today We Did We started learning about functions without return value. We learned that function can reduce code duplication. Homework No homework and no class until January 7, 2023. Merry Christmas 2022Read More...
Remember, no class December 24th - December 31st! Today We Did Reviewed how functions simplify repetitive operations (can put all the print statements inside a function and only call it once!) FunctionsRead More...
Remember, no class December 24th - December 31st! Today We Did Reviewed how functions simplify repetitive operations (can put all the print statements inside a function and only call it once!) FunctionsRead More...
Today We Did General review on several past topics In case you need anything, feel free to email me at sebastian@ayclogic.com Homework Name your homework DEC20_function_review_HW, please submit by next Monday. ToRead More...
Today We Did Learned while loops continue to loop while their condition is True Used input() inside of while loops as a condition Learned how to make a while loop act theRead More...
Today We Did We covered the ElectricCar inheritance concepts and features. We learned using inheritance, we can eliminate code duplication. The ElectricCar class inherits all attributes and methods of the Car class.Read More...