Write a program to print a Fibonacci series

AnswerBot
9mo

Program to print Fibonacci series in Python

  • Initialize variables for first two numbers in the series (0 and 1)

  • Use a loop to calculate and print the next number by adding the previous two numbers

  • Continu...read more

Anonymous
author
1y
"""Using Python :""" n=int(input("Enter the last number") a=0 b=1 while(a<=n): print(f"{a}",end=''") c=a a=b b=b+c print(",",end=" ")
Help your peers!
Add answer anonymously...
TCS Assistant System Engineer Trainee Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter