The way you translated the math into code was easier to understand than many other presenters. Thanks a million.
@clanhindustan3583 жыл бұрын
# Assignment Fibonacci series # Thank You Sir. def fib(num): if(num
@patelprit442 Жыл бұрын
why you take n+1 in for loop range
@shilpakannan9058 Жыл бұрын
Cos if you want till num ,should take one number ahead to get that..for eg to get 24 we write 24+1 which gives till 24 value
@hardikkumar51888 ай бұрын
@@shilpakannan9058it works without adding+1 too
@speaktothepoint21085 жыл бұрын
Fibonacci series is one of the evergreen topics that always interests both the Mathematicians and the Programmers. Navin's presentations is awesome - as always !!
@stockfish33794 жыл бұрын
Sir*
@talhaordukaya22043 жыл бұрын
Nice and clear answer for the question: def fib(): a, b = 0, 1 while a < 100: print(a, end=" ") a, b = b, a+b fib()
@anamikaupadhya1444 жыл бұрын
My every morng in this lockdown start with your lecture of python sir ..thanx a lot sir👍👍
@viswatalks4114 жыл бұрын
Wow really very nice yar😍😍😍,, I am also trying to learn python in this lockdown,,, nd Navin sir lecture is just simply superb ♥️
@youngsgaming56204 жыл бұрын
mine too :)
@mohammadmohsinmohammedmohs97174 жыл бұрын
Ok let's learn together 😄😄👍
@simranjitsingh51264 жыл бұрын
Hlo... Hope u r doing well, Which college?
@nadeemshaik1574 жыл бұрын
Ur so beautiful in ur profile
@ch_rahulsharma4 жыл бұрын
I was actually learning from a Udemy video, but that was a bit confusing so I started to search on KZbin and I found this video. This video is extremely useful and helped me to understand the concept. Also, the use of visual representation makes things a lot more intuitive and easy. Thanks a lot Sir
@davidr.flores20433 жыл бұрын
I was on the 'exact same ship', but this presenter was way better when it comes to translating a math problem into Python code. Regards!
@mamillajaswanth8844 Жыл бұрын
def fib(n): a=0 b=1 if(n>0): if(n==1 ): print(a) else: print(a) print(b) for i in range(2,n): a,b=b,a+b print(b) else : print('enterd negative value') fib(10)
@1najamulsaqib4 жыл бұрын
def fib(num): lst = [0, 1] for i in range(20): n = lst[i] + lst[i+1] if n < num: lst.append(n) if n > num: break return lst x = fib(100) print(x)
@mylifebd2024 Жыл бұрын
def fibonnaci(n): a = 0 b = 1 sequence = [] while a < n: sequence.append(a) c = a + b a = b b = c return sequence print(fibonnaci(100))
@INDIAN-kq6yo4 жыл бұрын
Hi Navin, Your teaching is one of the best. You can only teach us the concept. It is our duty to play and try different approach. You have taught us every thing to create the following function. This function is memory efficient and you don't have to check for 0 or negative inputs. def fib(n): a=0 b=1 for i in range(0,n): print(a) a,b = b,a+b
@varunabhi4 жыл бұрын
2nd assignment:-- def fib(n): a = 0 b = 1 if n==1: print(a) else: print(a) print(b) for i in range(2,n): c = a+b a = b b = c if c
@nastyyt96392 жыл бұрын
u can do , if c>100 break
@akhild99004 жыл бұрын
assignment: def fib(x): a=0 b=1 if x
@abhaykulkarni83324 жыл бұрын
Hello, can you explain how the if statement at last is making the difference
@arpdahod52753 жыл бұрын
abay, there is two assignment, and that 'last if' is for second assignment.
@vedanthasm26592 жыл бұрын
fib(0) ---> "in valid" is this correct?..as per above code? is it....fib(0) ---> 0
@gulammujthaba57782 жыл бұрын
n=int(input("enter number ")) a=0 b=1 if n
@mr.indiangamer13842 жыл бұрын
thanks bro
@anshpatidar58424 жыл бұрын
solution: def fib (n): a=0 b=1 if n
@michaeldonki99474 жыл бұрын
# Fibonacci sequence with arbitrary boundary as input: def fib(bound): a, b = 0, 1 while a < bound: print(a, end=" ") a, b = b, a+b print()
@rajeswarim28923 жыл бұрын
@@Svcollections941 call the function. He didn't mention it.
@santoshkumarp.g61583 жыл бұрын
Yeah
@prateekaphale11344 жыл бұрын
a=0 b=1 print(a) print(b) for i in range(100): c=a+b if c
@Your_pie655 Жыл бұрын
thankyou so much for this!
@ritusree054 жыл бұрын
n=int(input('Please type the no. of values-')) def fib(n): a=0 b=1 c=a+b if n
@Mohit_31211 ай бұрын
n = int(input('Enter the no. of values: ')) def fib(n): a=0 b=1 if n
@therealthinker908511 ай бұрын
Thanks 🙏
@kelleyannbart8348 Жыл бұрын
Visual presentation and examples are really helpful. Am using your youtube videos to re-enforce learning things I do not understand in lectures in my course study. Thank you so much!!
@ITechniques4 жыл бұрын
def fib(n):# task 3 { Fibonacci series } a=0 b=1 if n==1: print(a) elif nn: break print(b,' ',end="") n=int(input('enter the number')) fib(n)
@ITechniques4 жыл бұрын
How it is sir?
@PawanK22134 жыл бұрын
If I become a programmer in future, because of Navin sir: Great sir.
@awadheshyadav48863 жыл бұрын
Did you?
@Thedeepanshu953 жыл бұрын
did you?
@jose0003 жыл бұрын
. . . . . .
@darksouls60142 жыл бұрын
@@Thedeepanshu95 i think hes dead
@arkapravadas61310 ай бұрын
Did you?
@priyadambhe10975 жыл бұрын
def fibo(num): a = 0 b = 1 if num
@muhammadtalhataj37664 жыл бұрын
def num(n): a=0 b=1 if(n
@dhirajsarkar72463 жыл бұрын
U forgot ' ' in print. It should be print('0')
@muhammadtalhataj37663 жыл бұрын
@@dhirajsarkar7246 no it running good at that time
@poojagawande32783 жыл бұрын
Yeah it's really work ...👍 thanks
@vnd213 жыл бұрын
Last assignment in this video:- def fib(n): a,b = 0,1 c = 0 l = [] while c
@BoomcoreIsLive5 жыл бұрын
#FibonacciSeries def fib(n): first,second=0,1 if n
@swapnilshinde25405 жыл бұрын
This code is short and amazing thnx bro
@BoomcoreIsLive5 жыл бұрын
@@swapnilshinde2540 thank you!😁
@Rahulpandey-hp2pf5 жыл бұрын
Fibonacci series in reverse order ex.0,-1,-1,-2,-3.....
@Rahulpandey-hp2pf5 жыл бұрын
@@BoomcoreIsLive hmm
@thinkwith_shannu5 жыл бұрын
@@Rahulpandey-hp2pf def fib(n): a=0 b=-1 print(a) print(b) for i in range(2,n): c=a+b a=b b=c print(c) fib(10)
@myyogesh45398 ай бұрын
def fib(n): a = 0 b = 1 print(a) print(b) for i in range(2,n): c = a + b a = b b = c if c
@harshal16114 жыл бұрын
def fib(n): a=0 b=1 if n==1: print(a) else: print(a) print(b) for i in range (2,n): c=a+b a=b b=c if c>n: break print(c) fib(n)
@anudeepm72954 жыл бұрын
the code doesn't work for n=3,4
@punithkrisg4194 жыл бұрын
@@anudeepm7295 it works in for statement range(n) u put
@manasamanasa32494 жыл бұрын
If C
@manasamanasa32494 жыл бұрын
Or If c>n: Break
@sanskarshendge62334 жыл бұрын
bro the code dosent work
@somaysharma36114 жыл бұрын
mylist = list() x = int(input("Enter how many numbers you want in fibonacci secquence :")) def fibo(): if x = 0: print(a) print(b) for i in range(2,x): c = a + b a = b b = c if c >= 100: break else: print(c) mylist.append(i) fibo() Sir, here's my project along with both the assignment done at the same and thanks a lot for teaching us wonderful stuff about python Ba bye...
@kp-discovers88134 жыл бұрын
your sessions are amazing and makes python an easy language to learn the last assignment of this session is very simple put if c
@bharathchandran62744 жыл бұрын
this wont work brother
@sumanth50874 жыл бұрын
@@bharathchandran6274 😕😂 Why brother??
@assk17282 жыл бұрын
Hey it works bro
@shreyashthakur6072 жыл бұрын
No actually it should be if c
@manokm73483 жыл бұрын
def fib(n): a=0 b=1 if n>=2: print(a) print(b) for i in range(n-2): c=a+b b=c a=b-a print(c) else: if n==1: print(a) else: pass fib(0) This works too. Thanks Navin, your teaching is great
@sreeyagalla51585 жыл бұрын
you are best tutor sir.thank u so much sir.really helped a lot in my exams
@JohnvictorPaul-ec1sm6 ай бұрын
def fib(x): a=[0,1] for i in range(x): b=a[-2]+a[-1] if b
@sheoran28484 жыл бұрын
I feel this is a better way as there is no need to print first two values, everything is handled by the for loop: l=int(input("enter length: ")) def fib(l): x,y = 0,1 for i in range(l): print(x) next=x+y x=y y=next fib(l)
@vishugusain52323 жыл бұрын
yes your answer is good but you have to return a statement to user that his/her input is invalid for that i made some changes in your function, I hope you will like it >>>>> l=int(input("enter length: ")) def fib(l): if l
@karunkumar61633 жыл бұрын
def fib(n): a=0 b=1 if n==1: print(a) elif n100: print("sum of fib is greater than 100") break else: print(c) fib(100)
@tokay64674 жыл бұрын
If n
@Rosieposie77648 ай бұрын
Assignment - def fib(n): if n
@satyammhetre28324 жыл бұрын
I tried this code and it worked! This is bit simpler than yours. a = 0 b = 1 x = int(input("Please enter a number: ")) while a
@yuvaltasher20544 жыл бұрын
Change it to a for loop
@GhaniEdu4 жыл бұрын
can u explain it
@freudoulon31794 жыл бұрын
issue with the condition for the loop. Here is a more comprehensible code def fib(x): a = 0 b = 1 if x==1: print("0") elif(x
@yashsurana25544 жыл бұрын
This is great but it will not work in the while loop as it will stop when a is lesser than x. So suppose I take x as 5, the output will be : 0 1 1 2 3 5 8 it will stop at 8 because 8(a) is less than 10(x). For this purpose, we must use for loop keeping x as a range input. a = 0 b = 1 x = 10 for i in range(x): print (a) a,b = b,a+b
@AaryanGupta-c4g7 ай бұрын
n = int(input("Enter a number: ")) def fib(n): if n
@d.99003 жыл бұрын
Assignment 2 : To get the fibonacci sequence with condition of Comparison / Identity operators - n=int(input("Fibonacci Sequence until last term is less than :")) a=0 b=1 print(a) print(b) c=0 while True : c=a+b a=b b=c if c
@RockstarBuddies2 жыл бұрын
When inputted 0, this code would not give 0 as an output so we could add if n == 1: print(c) after defining c and before starting the while loop. After this, we could even write elif n < 0: print('Invalid Input') so that it doesn't take negative numbers
@naghmaniyaz83484 жыл бұрын
def fib(x): a = 0 b = 1 i = 0 print(a) print(b) while a+b
@siddarthreddy73754 жыл бұрын
I guess it is possible even without 'i' variable
@yashdixit83784 жыл бұрын
fib = lambda n: 0 if n == 0 else ( 1 if n == 1 else fib(n-1) + fib(n-2)) for i in range(10): print(fib(i))
@prasannakatre40402 жыл бұрын
# Assignment 02 to print Fibonacci series for positive number and no of series elements def fib(n): a = 0 b = 1 if n == 1: print(b) else: print(a) print(b) for i in range(2, n): c = 0 c = a + b a = b b = c if c > n: break else: print(c) x = int(input("Enter the no of values you want in the Fibonacci series: ")) if x < 0: print("Series must have positive value!") else: fib(x)
@AshishKumar-rz7ul4 жыл бұрын
n = int(input("Enter length : ")) a = [0,1] n= n-1 for i in range(1,n): a.append(a[i]+a[i-1]) print(a)
@sparshjain47364 жыл бұрын
Navin sir, This can also be done using for i in range (2,n): a, b=b, a+b Print (b) Therefore you will not have to use a third variable which will make the coding memory efficient 😀 Thanks, Your student.
@shalemrobin62334 жыл бұрын
Hi, Thank you for the code which will make coding memory efficient and I tried it and it did work. One more I want to ask, in for we all know that it won't run till n times for Fibonacci series for e.g. if n is 100 it loop will not run for 100 times, if it gets any value greater than 100, it will end, if we give n in range will it take more memory, if it will take memory space what would be alternative to do it.
@kisankumavat83874 жыл бұрын
This will also work... def fib(x): a=0 b=1 c=0 while c
@kisankumavat83874 жыл бұрын
@@samp_sampath9493 yaa bro...✌️
@dishantkumbhar88224 жыл бұрын
Really efficient 🔥🙌
@Coder_DhruvArora4 жыл бұрын
Can you explain it Please ? 3rd variable was easy to do 😅
@thanishkrishnamurthy16894 жыл бұрын
Here is the solution for the Assignment: def feb(n): a=0 b=1 if n>0: if n == 1 : print(a) else : print(a) print(b) for i in range(2,n): c=a+b a=b b=c if c
@panomapet94415 жыл бұрын
Hello Telusko, kindly make a series on programming challenges/questions only. This can help us much!
@josib17924 жыл бұрын
right
@mondithokahosanna6895 Жыл бұрын
while True: n=int(input('Please type the no. of values-')) def fib(n): a=0 b=1 c=a+b if n
@StrictlyCards3 жыл бұрын
Thank you so much for the great breakdown! I was having trouble understanding how to do this via my textbook and after watching your video I finally get it!
@deepakprajapati67343 жыл бұрын
We can do this fibonacci program like this: f1=0 f2=1 n=int(input("How many numbers want to print")) If i
@bhoomigupta66883 жыл бұрын
Assignment solution:: def fib(n): a=0 b=1 if n100: break else: print(c) n = int(input("Please enter the no. of value you want in your fibonacci series")) fib(n)
@Rajadahana2 жыл бұрын
Without going for if c>100 and adding a break at the end, you could have tried that at the top in the first if statement. if n100: If the input is : - 101 Output will be : - "Invalid input" That would have shortened your code. Keep up the good work!
@rupaksarma6722 жыл бұрын
@@Rajadahana You have not understood the problem..the question says to print sum of numbers less than 100 not total Fibonacci numbers
@japhethachimba1742 жыл бұрын
great one i was trying to use break out of the loop i got error your code is nice
@mrfoodboss10762 жыл бұрын
What is the algorithm for this
@harshanr3762 Жыл бұрын
urs is the best one on the comment section , u truely helped me out thanks
@deepakreddy57387 ай бұрын
def fib(n): a=0 b=1 if n
@todaysspark32803 жыл бұрын
Assignment(1) checking for negative n value def feb(n): a=0 b=1 if n
@vigneshjakka92373 жыл бұрын
#To print the number less than the "n" value in fibonacci series def fib(n): a=0 b=1 for i in range(2,n): c=a+b a=b b=c if b>n: print(a) break n=int(input("Enter the value of n: ")) fib(n)
I think you forgot to include what happens if the input is one (n = 1)....lol
@nigampratap24665 жыл бұрын
def fib(): n=int(input("the length of series is")) if n
@mrmrspraveen67035 жыл бұрын
Is I should be equal to 2 or 0?
@mrmrspraveen67035 жыл бұрын
It is i*
@mrmrspraveen67035 жыл бұрын
If c>n Break
@MrRohit0005 жыл бұрын
Sir, you are awesome. Please keep posting more videos. And about the for loop, for(start,end,step) --> for loop will print till end- step say for instance you have for i in range(1,100,1)-- it will print till 99[end(100) - step(1)] I felt that part was not clear Thank You sir
@BA-ve7xp2 жыл бұрын
yes, can you clarify the end part plz
@beecrofttobiloba18697 ай бұрын
1st and 2nd assignment solution: def fibi(m): if mm: break a = b b = c print(c) fibi(-1) fibi(20)
@pandapiz29105 жыл бұрын
assignment 2: i have taken range upto 50 numbers as the user only mentions a value and we have to print the value in the fibonacci series which is less than the user entry value def fib(n): a=0 b=1 if n==0: print("Invalid") elif n==1: print("The value before",n,"is :",0) else: for i in range(1,51): if i=n and b
@shubhamhgnis3 жыл бұрын
Great
@cheesball964 жыл бұрын
To end code at number that’s below 100 for I in range (2, n): c = a + b a = b b = c if c >= 100: break print (c)
@marksteventagaro21713 жыл бұрын
def fib(n): a=0 b=1 d=0 if n c: d = c print(d)
@atulayagupta7854 жыл бұрын
n = int(input("Enter the numnber of sequence needed to fabonacci series: ", )) first = 0 second = 1 if n == first: print("Series : ", first) else: print(first) print(second) for i in range(n): next = first + second first = second second = next print(next)
@umajahnavi34823 жыл бұрын
range should be n-2 not n
@_SahilShah3 жыл бұрын
A Huge Thanks to Sir for providing free education!! def fib(n): a = 0 b = 1 if n
@abhinayasurabhi98902 жыл бұрын
Thank you
@atishayjain6905 жыл бұрын
Here's my approach towards the assignment. I hope you like it. def fib(): a = [] n = int(input("enter the value of n : ")) a.append(0) a.append(1) for i in range(2,n): a.append( a[i-1] + a[i-2]) if a[i] >= n: a.pop(i) break print(a) fib()
@avinashwagh10583 жыл бұрын
how does it works for a.append(a[i-1]+a[i-2]) this equation
@jimpagyatso4863 жыл бұрын
@@avinashwagh1058 it work as c=a +b
@avinashwagh10583 жыл бұрын
@@jimpagyatso486 so [i-1] is positioned indexing ??
@jimpagyatso4863 жыл бұрын
@@avinashwagh1058 yap...
@avinashwagh10583 жыл бұрын
@@jimpagyatso486 thank you
@lingamrakesh99182 жыл бұрын
def fib(n): a = 0 b = 1 i = 0 while i=100: break else: print(a,end=' ') c = a + b a = b b = c i+=1 fib(100)
@shashanksharma93504 жыл бұрын
very coherent , very easy. Thanks for the series.
@ajaydattatray64335 жыл бұрын
code for less than 100 def fib(n): a=0 b=1 while True: c=a+b a=b b=c if c
@amitkumar-ny2jd5 жыл бұрын
How to program Catalan numbers? I would like to request you, can you make a short video on this?
@zavier97883 жыл бұрын
to print nth catalan number : def fact(n): a=1 for i in range(1,n+1): a*=i return a n=int(input()) n-=1 cat=fact(2*n)/(fact(n+1)*fact(n)) print(cat) to print series of catalan numbers upto n: def fact(n): a=1 for i in range(1,n+1): a*=i return a n=int(input()) cat=fact(2*n)/(fact(n+1)*fact(n)) for i in range(n): cat = fact(2 * i) / (fact(i + 1) * fact(i)) print(cat)
@arahanthjain42574 жыл бұрын
def fib(n): a = 0 b = 1 if input==0: print(a) count=1 print("the total numbers", count) else: print(a) print(b) count=0 for i in range(input): c = a + b a, b = b, c if c > input: break print(c) count+=1 print("the total numbers", count+2) input = int(input('enter the number')) fib(input)
@EVtalkMS3 жыл бұрын
To print a fibonnaci series upto certain val(Assign 2) x=int(input('enter a val') a,b=0 If x>0: Print(a) Print(b) For i in range(1,x): C=a+b a,b=b,c If c
@arindamghosh513 Жыл бұрын
assignment(2) def fib(s): a=0 b=1 print(a) print(b) for i in range(2,s): c=a+b a,b=b,c if c
@yashthakkar74683 жыл бұрын
From where can we get the assignment solutions to verify
@pimppakoda11534 жыл бұрын
For numbers upto user specified:- def fib(n): a = 0 b = 1 if n
@BNTechyoutuber2 жыл бұрын
Hey, Can you create program where at the end it prints the sum of the sequence?
@jonitadsouza54104 жыл бұрын
I think this is right and I hope this helps! Feel free to tell me if its wrong I'm a learner too: def fibo(num): a = 0 b = 1 c = 0 if num == 0: print(a) else: print(a) print(b) while num > c + a: c = a + b a = b b = c print(c) thelast = int(input('The last number of the Fibonnaci sequence you wish to see ')) fibo(thelast)
@mohammadfayaz9106Ай бұрын
def fib(n): a=0 b=1 if n
@techsp63794 жыл бұрын
Due to your Lectures our knowledge × n Thank-you Sir
@omhpatil Жыл бұрын
where n = infinite
@mharoonf64352 жыл бұрын
It's a great method to teach form Pakistan
@dineshgurumoorthy35645 жыл бұрын
Jus add if condition after the def function with proper indentations If n< 1: Print(“invalid”) Else: Pass . . . . For loop . . . . Fib(5)
@asleeperj5 жыл бұрын
What if you wanted the program to print the negative fib numbers?
@pricepleasebd68735 жыл бұрын
second one def fib(c): a=0 b=1 print (a) print (b) for i in range(2,c): c=a+b a=b b=c if c>100: break print(c) fib(100)
@uniqueprogrammervivekyadav58365 жыл бұрын
def fib(n): a=0 b=1 if n =1: print(n) else print (a) print(b) for i in range(2,n): c=a+b a, b= b,c if c>n: break print(c) fib(100)
@sumanshekar20235 жыл бұрын
Assign 2 def fib(n): if n>=0: a=0 b=1 print(a) print(b) else: print("should not be negtive number") for i in range(2,n): c=a+b a=b b=c If c
@rajashekarakandula19234 жыл бұрын
Nice
@sanjaykhandelwal60135 жыл бұрын
If a,b
@rajarshiroy87945 жыл бұрын
n=int(input("enter a no. :")) a=0 b=1 if n==1: print(b) elif n
@sreerajva19165 жыл бұрын
def fib_last(n): a=0 b=1 if n n: print(c)
@nilayshah52474 жыл бұрын
Assignment: def fib(n): i=0 x = 1 init = 0 print("0 1 ",end='') while(1): y = x+init if(y
@mateenahmedkhan37804 жыл бұрын
seeing so many answers, i think we can do it more simple. In the start of the function just check if value < 0 then just return nothing. Something like this if(n
@vinaysudheer4744 жыл бұрын
Why not a break is not applicable in the code
@mateenahmedkhan37804 жыл бұрын
@@vinaysudheer474 breaks exists within loops like for and while
@JaftaMoloto-1837 ай бұрын
def fib(n): a = 0 b = 1 for i in range(100): c = a + b if c
@adityaprakash56775 жыл бұрын
Please start some project on Java or python. Not live project in which only few can participate but For every one. All can make on their own by seeing your videos it will be helpful for our resume...... small and large projects both will be helpful for widening the concept.
Sir you are great Finally i had clear all dought in python🤙❤ Your Student - Alien 👽
@islay.okay.36305 жыл бұрын
Phle doubt ki spelling to clear kar le 😂 "dought"
@ankitjain1545 жыл бұрын
@@islay.okay.3630 hahaha
@42najibshaikh984 жыл бұрын
@@islay.okay.3630 😂😂😂
@amansilawat83535 жыл бұрын
My Assignment : def fib(n): a, b = 0, 1 if n == 1: print(a) else: print(a, b, sep=' ') for i in range(2, n): c = a + b a, b = b, c if c > 100: break print(c) fib(100)
@taofeekokutade26162 жыл бұрын
I'm grateful for this video, it helps me understand Fibonacci after a confusing start in my Python Career
@TheSwatisadhukhan5 жыл бұрын
def fib(n): result = [] for i in range(n): if i==0: result.append(0) elif i==1: result.append(1) else: result.append(result[i-1]+result[i-2]) print(result) fib(10)
@TheSwatisadhukhan5 жыл бұрын
def fib(n): if n
@TheSwatisadhukhan5 жыл бұрын
def fib(n): if n
@sing7595 жыл бұрын
@@TheSwatisadhukhan thank you
@harshmehrotra6235 жыл бұрын
Wow
@saichandana85734 жыл бұрын
n=int(input("enter the no of fib series?)) a=0 b=1 print=(a) print=(b) for i in range(2,n+1): temp=a a=b b=b+temp print(b)
@ghxst16074 жыл бұрын
def fab(lst): s=0 while s < 100 : s=lst[-1]+lst[-2] if s>=100: break lst.append(s) return lst lst=[0,1] number=int(input("Enter the Final no.")) Fabbo=fab(lst) print("Fabbonacci",Fabbo)
@pimppakoda11534 жыл бұрын
For number less than 0: def fib(n): a = 0 b = 1 if n
@suhailahmed77063 жыл бұрын
n=int(input("enter the last value")) a=0 b=1 c=0 print(a,b) while c < n: c=a+b a=b b=c if c>=n: break print(c)
@varunabhi4 жыл бұрын
Total fibonacci series with no errors. Can play as many times as you want without running each time.(1st assignment) def fib(n): a = 0 b = 1 if n==1: print(a) else: print(a) print(b) for i in range(2,n): c = a+b a = b b = c print(c) a = 1 while a==1: n = input("Enter the number of sequences you want for fibonacci sequence:") try: n = int(n) except: print("String's can't be used with fibanacci series.") continue if n
@ziyodullapayek62212 жыл бұрын
for finding fibonacci numbers within input range: def fib(x): a = 0 b = 1 print(a) print(b) for i in range(2,x): c=a+b a=b b=c if c
@meetangad4 жыл бұрын
#Fibonacci Sequence using functions def fib(n): a=0 b=1 if n==1: print(a) elif n n): break print(a) fib(150) Result will be 144
@ankitsahoo3074 жыл бұрын
It should be print(c) in the inner if condition
@varadnaik4831 Жыл бұрын
I love how you involve viewers while coding, not just showing pre-written code.