Report an issue
say_hello (name)
Say hello to the name entered.
say_hello is an example of a function.
say_hello("Isaac")
'Hello Isaac!'
sieve_of_eratosthenes (num)
Print all primes less than or equal to N using the Sieve of Eratosthenes.
sieve_of_eratosthenes(30)
[2, 3, 5, 7, 11, 13, 17, 19, 23, 29]