Write a program that takes a value x and then outputs x Fibonnaci numbers. E.g. if x=6 output would be 1 1 2 3 5 8

First define a method that takes a value n and prints the nth number in the Fibonacci sequence. E.g. if n=3....fib(n)=2. ## Here this is done by recursion (a method that calls itself).def fib(n):  if n<=1:    return 1  else:    return fib(n-2) + fib(n-1)## Then define a method to call fib on every number up to the given value x (e.g. fib(0) fib(1) fib(2)) and print the result each timedef fibStarter(x):  for i in range(x):    print(fib(i)) ## Finally call this method to see it working fibStarter(20)

Answered by Peter B. Python tutor

765 Views

See similar Python Mentoring tutors

Related Python Mentoring answers

All answers ▸

[Exam style] Python is an interpreted language. Explain what this means and how interpreted languages differ from compiled languages.


[Student query] Why do we import libraries/modules such as Numpy and Matplotlib into Python?


Write a function that takes a list of numbers as input, and outputs the average of the numbers. The function should catch any errors.


Write a program that computes the sum of all numbers up to a input number n


We're here to help

contact us iconContact usWhatsapp logoMessage us on Whatsapptelephone icon+44 (0) 203 773 6020
Facebook logoInstagram logoLinkedIn logo

© MyTutorWeb Ltd 2013–2024

Terms & Conditions|Privacy Policy