Question: CHW 1 . 1 . Write a function that modifies a list Given a list of integer numbers stored in the variable A and an

CHW1.1. Write a function that modifies a list
Given a list of integer numbers stored in the variable A and an integer n, the function A?subset returns a tuple (sum, Asub) where sum is an integer with the sum of all the entries of the list, and Asub is a list including the first n entries of A.
Here is an example of the function usage:
def A_subset (A,n) :
# write some code here
n=4
A=[29,25,69,7,74,10,95,26,8,78]
print (A_subset (A,n))
# output
(421,[29,25,69,7])
You may use the example above for debugging. We test your function using other lists; make sure to not hard-code your results.
user_code.py
def A_subset (A,n) :
for i in range. A-
pass
 CHW1.1. Write a function that modifies a list Given a list

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!