Question
In Python 3: Given the following sample code, write the following programs: An iterator class called Iteratefirstn that implements __iter__() and __next__() methods where next
In Python 3:
Given the following sample code, write the following programs: An iterator class called Iteratefirstn that implements __iter__() and __next__() methods where next method should raise an exception for the cur index if it is passed the last element otherwise set cur index to the next index and advance the index by one, i.e. cur, num = num, num+1. Instantiate the class to calculate sum of 1000000 elements similar to the example. Instead of implementing the class, write a generator function that does the same thing. Sample code:
def firstn(n): num, nums = 0, []
while num < n:
nums.append(num)
num += 1
return nums
sum_of_first_n = sum(firstn(1000000))
Step by Step Solution
There are 3 Steps involved in it
Step: 1
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