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

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!