FIBONACCI SEQUENCE (N-TERMS) PROGRAM IN PYTHON || FIBONACCI SERIES IN PYTHON || PYTHON PROGRAMMING

Поділитися
Вставка
  • Опубліковано 8 лис 2024

КОМЕНТАРІ • 14

  • @ManasMenaria-vq5mh
    @ManasMenaria-vq5mh 10 місяців тому +1

    Best explanation... 👍👍

  • @Pankaj-Verma-
    @Pankaj-Verma- 8 місяців тому

    Thank you.

  • @KowshikVarmaJagathapurao
    @KowshikVarmaJagathapurao 2 роки тому

    sir the class gets intrested when you give lecture on the board sir!

  • @bharathkumarramesh23
    @bharathkumarramesh23 2 роки тому

    Sir put a video for nth multiple

  • @navyakammampati8740
    @navyakammampati8740 Рік тому

    Sir by giving negative length what value we get

  • @nitheshgopal6042
    @nitheshgopal6042 Рік тому

    Can we do this with recursion process

  • @rakshithakrushnappa8841
    @rakshithakrushnappa8841 2 роки тому

    Sir plzz make a videos on java8

  • @zufrankhan7793
    @zufrankhan7793 Рік тому

    Can anyone tell me that is this a iterative method or recursive method ???

  • @sudhaswapinaka9623
    @sudhaswapinaka9623 8 місяців тому

    iam not getting the output, it's just taking the length and not displaying any output.. iam using sublime text

  • @VindhyaGB
    @VindhyaGB Рік тому

    Sir can i know the description for end=" ". Why actually end is used in python sir?

    • @zufrankhan7793
      @zufrankhan7793 Рік тому

      end=" " is use to print any thing in a single line
      And if u write end=" " (give some space ) then it will give space in ur output too within a single line

  • @kosanaramu3994
    @kosanaramu3994 2 роки тому

    How to check whether the given number is Fibonacci or not...can you please explain sir ....

    • @bharathkumarramesh23
      @bharathkumarramesh23 2 роки тому

      If given input taken as n
      a = 5n²+4
      If a is perfect square it is a fibonacci
      To check you find root int of a and multiply with a same number
      X = int(math.sqrt(a))
      Multiply x*x
      If x*x == a1
      It is a fibonacci

    • @onyx3451
      @onyx3451 Рік тому

      @@bharathkumarramesh23 not work with al numbers