Is Prime

A prime number is a number that has no factors except for 1 and itself. Write a function called isPrime that returns True if the number is prime.

Then in the main(), use range with a for loop to display only the prime numbers below 100.

What You Should See

2
3
5
7
11
13
17
19
23
29
31
37
41
43
47
53
59
61
67
71
73
79
83
89
97


©2017 Graham Mitchell