Attend the lab section that you are signed up for (check Aurora)
Each lab should be completed inside the Runestone Textbook
For each part of the lab, show your code to the lab instructor, who may ask you questions to ensure that you did the lab yourself and understand it
You can show all three parts to the instructor at once (i.e., donβt wait to work on Part 2 until Part 1 gets checked off)
Subsection12.1.2Getting Help From Labmates
Labs are meant to be both a learning experience and a normative assessment. You must do your lab yourself, but it is okay to get help from lab mates. You can look at one anotherβs code and ask each other questions about your code. However, any code that is in your lab must be typed by you (not copied from someone else) and you must understand what and why you are typing that code. If you canβt explain what the code does or why it works, you will not get full credit. If someone asks you for help with the lab, donβt just tell them what to type if you have yours working. Explain to them what is wrong with their code or how you did yours and why.
Do NOT post solutions to labs on Piazza or in any other channels (such as a telegram chat, discord server, etc.).
Subsection12.1.3Grading
Each lab has three levels (parts) and is scored out of 4 points: * Each completed level is worth 1 point. * There is 1 point for properly commenting your code.
Subsection12.1.4Formatting/Commenting
Remember to do the following for each lab Level:
Add your full name, student ID and lab section in a comment at the top of the code
Add the date in a comment under your name
Use good spacing around blocks of code, functions, etc.
Use proper indenting (4 spaces for each level of indentation)
Add a comment before any code that does something that isnβt obvious
Add a comment above any functions you create to explain what the function is for
Use proper (descriptive, but not insanely long) variable names.
If you are using constants (variables whose values NEVER change during the program), use ALL_CAPS (eg. DAYS_IN_WEEK = 7)
Note12.1.1.
Good variable name examples: student_id, num_points, box_width, y_scale_factor
Note12.1.2.
Bad variable name examples: var, temp, this_students_id_number, BoxWidth