Q. Write python that create a tuple storing first 9 term of Fibonacci series.
You can understand by Watching video :-
Answer :-
fib = (0,1,1) for i in range(6): fib = fib + ( fib [ i +1] + fib [ i + 2 ] ,) print(fib)
Output :-
(0, 1, 1, 2, 3, 5, 8, 13, 21)
>>>
You should have wrote ans instead of videos 😑😑😑
ReplyDeletebut you can understand answer by watching video more easily : )
DeleteThank you for making this great website
ReplyDeletenot satisfied
ReplyDeleteWhy.??
DeleteSolution ain't clear
ReplyDeletePlease watch the video.
DeleteBest website sir .. Very helpful .. Really appreciate it
ReplyDeletethis question and the 10th question from lists (type c), both contradict each other.
ReplyDeleteNo, both are similar not contradict.
Deletewow bro answers savage question
ReplyDeletePost a Comment
You can help us by Clicking on ads. ^_^
Please do not send spam comment : )