Next prime
Created on Jan. 16, 2017 by Julien Palard
Provide a script that computes, then prints the first prime number
greater than 100_000_000
.
Advice
You may use
itertools.count()
,
and you may need
sys.exit()
.
Created on Jan. 16, 2017 by Julien Palard
Provide a script that computes, then prints the first prime number
greater than 100_000_000
.
You may use
itertools.count()
,
and you may need
sys.exit()
.