6 PM – Intro to Python – Daniel
What We Did We went over fixing python errors in class today. We made the password generator together in class. Homework Create a new file Oct_10_FixingPythonErrors.py and fix this code, until theRead More...
What We Did We went over fixing python errors in class today. We made the password generator together in class. Homework Create a new file Oct_10_FixingPythonErrors.py and fix this code, until theRead More...
Today We Did: Reviewed Fix 2 Homework Remember that it is <= or >= not => =< If/Elif/else reminder: remember the idea of boxes If is start , elif in the middle(ifRead More...
Today We Did Revisited while loops Learned about for loops with the range() function Learned about "for each loops" Thursday 6:30PM class code: https://drive.google.com/drive/folders/1qlUjB3gRXHSK5kRzjKzDD2qIz-OqB2bK?usp=sharing AYC Logic’s observed holidays: https://www.ayclogic.com/observed-holidays/ In case youRead More...
Today We Did Review How to write a list: name_of_list = How to add things to list Way 1: Appending -> name_of_list.append(new_object) Way 2 : Inserting -> name_of_list.insert( 1, new_object) HowRead More...