The instructions for this assignment are in the PDF linked here:
https://drive.google.com/file/d/1cnbWBqY8UNjNJIHOxRJTmIvdhKb2QEz3/view?usp=sharing
def test() : # do not change this line!
values = [4, 7, 8, 9, -5] # do not change this line!
# write your code here so that it modifies values
# be sure to indent your code!
print(values)
return values # do not change this line!
# do not write any code below here
test() # do not change this line!
# do not remove this line!
Comments
Leave a comment