Question: The following needs to be coded in Python 3.5. You must have knowledge of generators. Please answer with proper indentation, formatting, etc. Thanks! Problem 2.
The following needs to be coded in Python 3.5. You must have knowledge of generators. Please answer with proper indentation, formatting, etc. Thanks!


Problem 2. Prime Number Generator Part a). Iterator Class Write a class called PrimeSeq that generates the sequence of the first n prime numbers, starting with 2, 3, 5,.... The class must comply with the iterator interface and must support the for statement. The next 0 method must return the next prime number from the sequence or throw Stoplteration if n primes have already been generated. This class should work like this: prints in order the first 100 prime numbers 2, 3, 5, prime seq PrimeSeq (100) for p in primeseq print (p)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
