Sometimes you run into a problem in your code. When you get stuck, there are many people avilable to help you figure out the issue.
To ensure you are understanding rather than just memorizing, complete the following before asking for help:
If you do not receive a response in 24 hours, please send the request again.
This is an individual lab assignment. You must do the vast majority of the work on your own. It is permissible to consult with classmates to ask general questions about the assignment, to help discover and fix specific bugs, and to talk about high level approaches in general terms. It is not permissible to give or receive answers or solution details from fellow students.
You may research online for additional resources; however, you may not use code that was written specifically to solve the problem you have been given, and you may not have anyone else help you write the code or solve the problem. You may use code snippets found online, providing that they are appropriately and clearly cited, within your submitted code.
By submitting this assignment, you agree that you have followed the above guidelines regarding collaboration and research.
num_oranges = 456
print(num_oranges)
def main():
#your top level algorithm
def myFunction(arg1=0, arg2=None):
"""
general function description
args: (type) description
return: (type) description
"""
def myMethod(self, arg1=0, arg2=None):
"""
general function description
args: (type) description
return: (type) description
"""