Is this a correct Lazy list for prime numbers? Also, it doesnt seem to print the filtered results when ran.
Any help?
Code: Select all
n = input( "Type number you want prime list to go up to.")
integers = range(1,n)
filter(lambda x : x%x == 1, integers)
When ran, and I type in 200, for example, it doesnt print anything. Im guessing I have the lambda part wrong, but am unsure.
Thanks.
Any help?
Code: Select all
n = input( "Type number you want prime list to go up to.")
integers = range(1,n)
filter(lambda x : x%x == 1, integers)
When ran, and I type in 200, for example, it doesnt print anything. Im guessing I have the lambda part wrong, but am unsure.
Thanks.