😎Hey, thanks for watching! We’d love to know your thoughts/doubts here in the comments. 👉For professional self-paced certification courses (pre-recorded), visit: bit.ly/Pre-Recorded-Course 👉Don’t forget to SUBSCRIBE to our channel for more such videos & valuable content: bit.ly/UA-cam-WsCubeTech
I think , You have written extra code. As per my observation below code is enough to print Fibonacci Sequence. """" n=int(input("Enter number: ")) a=0 b=1 for i in range(1,n+1): print(a) c=a+b a=b b=c """
Hello ma'am, First of all thank you so much for creating such a wonderful video on this topic so elegantly. I got the exact same question in my practical examination today and i was successfully able to complete the execution of this program. Thank you so much ma'am ❣️😊
Sir please make a full tutorial what is sales funnel how to make sales funnel please sir ...make continuous video on digital marketing digital marketing...
😎Hey, thanks for watching! We’d love to know your thoughts/doubts here in the comments.
👉For professional self-paced certification courses (pre-recorded), visit: bit.ly/Pre-Recorded-Course
👉Don’t forget to SUBSCRIBE to our channel for more such videos & valuable content: bit.ly/UA-cam-WsCubeTech
I think , You have written extra code.
As per my observation below code is enough to print Fibonacci Sequence.
""""
n=int(input("Enter number: "))
a=0
b=1
for i in range(1,n+1):
print(a)
c=a+b
a=b
b=c """
It is a genuine suggestion... I think you must release two videos in a day regarding the python programs for covering the whole topics.
num = int(input('enter a number'))
a = 0
b = 1
if num == 1:
print(a)
else:
print(a)
print(b)
for i in range(3,num+1):
c = a + b
a = b
b = c
print (c)
Why 3 ? In range?
Series start from 1@@rangaranga967
Shortest way to generate a Fibonacci sequence.
a, b = 0, 1
for _ in range(10):
print(a)
a, b = b, a + b
Mam kya gazab kaam kr rhi ho aap logic build karne me bohot help ho rhi hai apki videos se
Very simple and informative approach, thank u so much
Hello ma'am,
First of all thank you so much for creating such a wonderful video on this topic so elegantly. I got the exact same question in my practical examination today and i was successfully able to complete the execution of this program.
Thank you so much ma'am ❣️😊
Thank you so much, I'm very loved your videos ❤️❤️
Congratulations ❤😍
x=int(input("how many terms of febbanacci series"))
a=0
b=1
count=0
while count< x:
print(a)
c=a+b
a=b
b=c
count+=1
Thank you bro
Love from Ghandhinagar gujrat
Meme bahute acha batya apne
Thenks
God of python ❤
Thank u ma'am 😅
Thanks mam
Thanks
THANK YOU MAM
#WSCUBETECH
but mam esma "if ", "else" function kiu use kia ??🤔 without that its also works
range will start from 2 intead of one?
because 0 and 1 print ho chuykay hain already
Please python kivy ka video laiye
Why did we chose n and not n+1 for range?
In python, the higher range is just previous value of n.
For take upto n,you have to write n+1
Sir please make a full tutorial what is sales funnel how to make sales funnel please sir ...make continuous video on digital marketing digital marketing...
This program is wrong..
If you enter 2 it's still giving only 0 and 1... instead it should give 0,1,1
Sir aap hme batao ki Gmail se mobile ko hack kaise kre please sir
First
Plzzz ek video bna dijiye, jisme hm animation videos channal ko bna sake free me🙏
🎉
# Display the Multiplication Table
n=int(input())
m=int(input())
x=1
for i in range(1,n+1):
x=i*m
print(n,"x",i,"=",x)
bhalo hoy nai
# Display the Multiplication Table
n=int(input())
m=int(input())
x=1
for i in range(1,n+1):
x=i*m
print(n,"x",i,"=",x)