Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Sum up all the integers from 2 to 77 with a for loop by filling in the blank in the code snippet below: sum
Sum up all the integers from 2 to 77 with a for loop by filling in the blank in the code snippet below: sum = 0 for i in range ( sum = sum + i type your answer here Modify your code from the above problem. Instead of using a for loop, use a list comprehension. Use the variable i as the indexer in the list comprehension and apply the function sum() to the list. Provide your code as the answer. i = [i for i in range(2,78)] sum= sum + i Submit Wrong Answer Submit Modify your code from the above problem. Sum up the squares of the integers instead of just the integers. What is the result? You are given the lambda function of the following form: func = lambda x: 8***(***2 5). What is the result of func(4) ? type your answer here Modify the Lambda function above such that it multiplies not by 8, but by 3. Put into the answer box the Python code to save the result in the variable func2. type your answer here Submit type your answer here You are given two lists: [30, 37, 24, 38] and [28, 39, 34, 20]. Using the zip() function, write a list comprehension that computes the ratio of the elements of list1 and list2. Use the variable names 11 and 12 for the elements in the list comprehension. Consider the list Submit Submit [12, 6, 9, 6, 7, 10, 9] Using a list comprehension, add one to each element and then multiply each element by 2. Put in the answer box how you would write the list comprehension. Use the underscore () as the placeholder for the iterator. If your answer is marked as incorrect, try a different order, e.g., (+1) instead of (1+_).
Step by Step Solution
There are 3 Steps involved in it
Step: 1
1 Sum all integers from 2 to 77 using a for loop python sum 0 for i in range2 78 sum sum i 2 Modify ...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started