Python program to find all the prime numbers in the given range- by Mahesh Huddar

Поделиться
HTML-код
  • Опубликовано: 25 янв 2025

Комментарии • 45

  • @gattri87
    @gattri87 3 года назад +17

    start is taken from 1, it also includes 1 but 1 is not a prime number

  • @ranjithv133
    @ranjithv133 3 года назад +18

    this is too complex . Try this instead
    n=int(input('enter the number range'))
    for i in range(2,n+1,1):
    for j in range(2,i,1):
    if i%j==0:
    break
    else:
    print(i)

    • @DanyalShabirr
      @DanyalShabirr 2 года назад

      This aint complex yet it lacks some statements.

  • @devipriyaprasannakumar4100
    @devipriyaprasannakumar4100 8 месяцев назад +2

    very well explained..thankyou so much

    • @MaheshHuddar
      @MaheshHuddar  8 месяцев назад +1

      Welcome
      Do like share and subscribe

  • @Swamy84682
    @Swamy84682 Год назад +3

    Sir,in the code,why can't we give break statement immediately after if (i%j==0) is true.Why do we need to include flag=1?

  • @garvgoel1743
    @garvgoel1743 2 года назад +3

    def count_primes(initial,final):
    numberOfPrimes=0
    for _ in range(initial,final+1):
    if _==1:
    continue
    if _ in [2,3,5,7] or (_%2 !=0 and _%3 !=0 and _%5 !=0 and _%7 !=0):
    print(_)
    numberOfPrimes +=1
    return f"No. of prime numbers are {numberOfPrimes}"

  • @tanmayraut4654
    @tanmayraut4654 3 года назад +3

    How do I print prime numbers from 1 to 1000, in group of 10's? like 2,3,5,7,11,13,17,19,23,29, then another 10 prime numbers….in python

  • @ishanknaithani5610
    @ishanknaithani5610 Год назад +1

    Thank you sir
    ..

  • @musaddiqali1
    @musaddiqali1 3 года назад +5

    When the interval from start to end is very large, like in lakhs of numbers, then this program will take more time to compute. In that case, I came to know that the fastest method may be Sieve Of Eratosthenes method. Can you please explain this same program using Sieve of Eratosthenes method?

  • @prittamrahul3865
    @prittamrahul3865 2 года назад

    Thank you sir ji

    • @MaheshHuddar
      @MaheshHuddar  2 года назад

      Welcome
      Do like share and subscribe

  • @sarlengunavathy
    @sarlengunavathy 3 года назад +1

    I want the code to show the available prime numbers, the number of prime numbers and the sum of all prime numbers

    • @alphamannn1891
      @alphamannn1891 6 месяцев назад

      google cheko ra na bachha
      evad pedthad anukunav ila adigite

  • @tasharomanoff9284
    @tasharomanoff9284 4 года назад +3

    What is meant by flag=0?

  • @Aryansingh-fk7hy
    @Aryansingh-fk7hy 3 года назад

    I am even getting 0 or 1 while initializing the start variable with the value 0 or 1 as per the given code in the video, as both are not prime numbers ,so the code is missing some statements,so please rectify that!!.

  • @bhaskarcherry2196
    @bhaskarcherry2196 3 года назад +3

    Non prime numbers how to print

    • @ari372
      @ari372 2 месяца назад

      😂

  • @Simasofa
    @Simasofa Год назад

    Great

    • @MaheshHuddar
      @MaheshHuddar  Год назад

      Thank You
      Do like share and subscribe

  • @bodyart1460
    @bodyart1460 Год назад

    thank you

  • @IamHariJags
    @IamHariJags 4 года назад

    i want the next prime number to be printed plz help

  • @rithickdharmaraj3619
    @rithickdharmaraj3619 3 года назад +2

    Boss ,I need help .. my starting is 14 and ending is 16,,, there is no output .... But I need output as (no prime between the range ) ...

    • @harshkumaryadav
      @harshkumaryadav 3 года назад

      Prime number ka definition pta bhi h ki nhi

  • @allenjr4978
    @allenjr4978 3 года назад

    Sir what if the start value is 2

  • @dineshvirat130
    @dineshvirat130 4 года назад

    (Get the range from the user)... Whats the range?

    • @naresh_kumar
      @naresh_kumar 4 года назад

      get the range from user , :
      so only we are using that input step on start and end point

  • @sangbala9201
    @sangbala9201 4 года назад

    I want comma in between numbers. What can I do

    • @sangbala9201
      @sangbala9201 4 года назад

      Thank you

    • @garvgoel1743
      @garvgoel1743 2 года назад

      ",".join(myList)
      myList is your list of all numbers

  • @SQLpythonforeveryone
    @SQLpythonforeveryone 2 года назад

    so simple

    • @MaheshHuddar
      @MaheshHuddar  2 года назад

      Thank You
      Do like share and subscribe

  • @mika4444
    @mika4444 3 года назад

    why is my program not working??!!

  • @sjr5194
    @sjr5194 3 года назад

    How to sum all the prime numbers what will we get in results

    • @sjr5194
      @sjr5194 3 года назад

      @@MaheshHuddar thnq sir for replying to me.....I will wait for your video

    • @sjr5194
      @sjr5194 3 года назад

      @@MaheshHuddar sir ...did you uploaded the video

  • @BMXRaghvendraSingh
    @BMXRaghvendraSingh 3 года назад

    🥺

  • @siddhigolatkar8558
    @siddhigolatkar8558 5 месяцев назад

    Thank you