Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python - prime number generator

# Prime number generator
def prime_generator(end):
    for n in range(2, end):     # n starts from 2 to end
        for x in range(2, n):   # check if x can be divided by n
            if n % x == 0:      # if true then n is not prime
                break
        else:                   # if x is found after exhausting all values of x
            yield n             # generate the prime


g = prime_generator(1000)       # give firt 1000 prime numbers
print(list(g)) 
Comment

generate random prime number python

import sympy

primeNumber = sympy.randprime(min, max)
Comment

prime number generator python

#prime number gen

nums=[]
max=10000

class N:
    def crazy():
        for i in range(max):
            nums.append(True)
        nums[0]=False
        nums[1]=False

        for index in range(max):
            if nums[index]:
                current_multiple = 2
                while index*current_multiple < max:
                    nums[index*current_multiple ]= False
                    current_multiple += 1

        for index in range(max):
            if nums[index]:
                print(f"----> {index} is a prime #")

N.crazy()
Comment

create prime number python

def prime_checker(number):
    is_prime = True
    for i in range(2, number):
        if number % i == 0:
            is_prime = False
    if is_prime:
        print("It's a prime number.")
    else:
        print("It's not a prime number.")

n = int(input("Check this number: "))
prime_checker(number=n)
Comment

PREVIOUS NEXT
Code Example
Python :: how to run single loop iterations on same time in python 
Python :: except index out of range python 
Python :: python save input to text file 
Python :: python if else variable assignment 
Python :: pyqt5 pylatex 
Python :: get csrf_token value in django template 
Python :: python print dict new line 
Python :: python rickroll code 
Python :: remove whitespace in keys from dictionary 
Python :: window in python 
Python :: Import "flask" could not be resolved 
Python :: how to use if else to prove a variable even or odd in python 
Python :: python change format of datetime 
Python :: chi square test in python 
Python :: list count frequency python 
Python :: how to check prefix in python 
Python :: b1-motion tkinter 
Python :: from PyQt5 import Qsci 
Python :: write list of dicts to csv python 
Python :: how to run a function in interval in python 
Python :: pandas series sort 
Python :: sort column with numeric and text data 
Python :: tkinter change button text 
Python :: panda check a cell value is not a number 
Python :: python lowercase 
Python :: python print string separated by comma 
Python :: position of legend matplotlib 
Python :: read csv without index 
Python :: python ssh library 
Python :: count how many times a value shows in python list 
ADD CONTENT
Topic
Content
Source link
Name
1+8 =