subject

Python programming: 2.8 exampledef factors(n): factorlist = []k = 2while k< =nwhile n%k==0: facorlist. append(k)n //= kk += 1return factorlistthe program in example 2.8 is not a very efficient way of calculating prime numbers: it checks each number to see if it is divisible by any number less than it. we can develop a much faster program for prime numbers by making use of the following observations: a) a number n is prime if it has no prime factors less than n. hence we only need to check if it is divisible by other primes. b) if a number n is non-prime, having a factor r, then n = rs, where s is also a factor. if r ≥ √n then n = rs ≥ √ns, which implies that s ≤ √n. in other words, any non- prime must have factors, and hence also prime factors, less than or equal to √n. thus to determine if a number is prime we have to check its prime factors only up to and including √n—if there are none then the number is prime. c) if we find even a single prime factor less than √n then we know that the number is non- prime, and hence there is no need to check any further—we can abandon this number and move on to something else. write a python program that finds all the primes up to ten thousand. create a list to store the primes, which starts out with just the one prime number 2 in it. then for each number n from 3 to 10 000 check whether the number is divisible by any of the primes in the list up to and including √n. as soon as you find a single prime factor you can stop checking the rest of them—you know n is not a prime. if you find no prime factors √n or less then n is prime and you should add it to the list. you can print out the list all in one go at the end of the program, or you can print out the individual numbers as you find them.

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 00:30
At an open or uncontrolled intersection, yield if a. the cross road has more lanes than yours b. the cross road has fewer land than yours c. you’re on a state highway and the cross road is a secondary road d. do you have three or more passengers in your vehicle
Answers: 2
question
Computers and Technology, 22.06.2019 15:30
Which of the following examples has four beats in each measure?
Answers: 2
question
Computers and Technology, 22.06.2019 22:00
Discuss the ways in which electronic information associated with payments is addressed in terms of security. include encryption, secure sockets layers, and secure electronic transactions in your discussion. are there any other ways that consumers and businesses can keep their payment information secure in an electronic commerce environment? do you feel that your information is safe when conducting electronic business? why or why not?
Answers: 1
question
Computers and Technology, 23.06.2019 04:31
Which of the following is not a way in which trees benefit the environment? a. they remove a significant amount of carbon dioxide from the atmosphere. b. they remove a significant amount of oxygen from the atmosphere. c. their roots hold soil in place, reducing rates of erosion. d. they remove ozone and particulates from the atmosphere. select the best answer from the choices provided a b c d
Answers: 1
You know the right answer?
Python programming: 2.8 exampledef factors(n): factorlist = []k = 2while k< =nwhile n%k==0: facor...
Questions
question
Social Studies, 26.03.2021 03:20
question
Social Studies, 26.03.2021 03:20
question
SAT, 26.03.2021 03:20
question
Mathematics, 26.03.2021 03:20
question
Mathematics, 26.03.2021 03:20
question
Mathematics, 26.03.2021 03:20
question
Mathematics, 26.03.2021 03:20
Questions on the website: 13722367