Python Forum
How to make faster this code
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to make faster this code
#2
You have a loop within a loop.
That means that each time the outer loops goes through 1 iteration, the inner loop if executed from start to end.
so in your case, the loop:
for i in r:
will run from start to finish from 2 to el for each iteration of list1.
Calculating primes is one place where I would recommend recursion.
see: https://www.daniweb.com/programming/soft...r-function
Reply


Messages In This Thread
How to make faster this code - by Ace - Oct-23-2017, 07:39 AM
RE: How to make faster this code - by Larz60+ - Oct-23-2017, 12:11 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [split] help me make this code better please (basic) Rustam 2 2,283 Jun-19-2020, 01:27 PM
Last Post: Rustam
  John Guttag Book - Finger Exercise 4 - need help to make the code better pritesh 12 10,731 May-06-2020, 05:10 PM
Last Post: riteshp
  How to make this dictionary-generating code more efficient? Mark17 4 2,396 Oct-08-2019, 07:42 PM
Last Post: Mark17
  Creating code to make up to 4 turtle move simultaneously in a random heading J0k3r 3 5,513 Mar-05-2018, 03:48 PM
Last Post: mpd
  How can I make faster that code BlueEva00 1 2,707 Oct-18-2017, 03:51 PM
Last Post: ichabod801

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020