Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Fibonacci Sequence Printing
00:00
5 left

Fibonacci Sequence Printing

EasyPython

Problem

Write a function that prints out the Fibonacci sequence.

For deterministic grading, implement this as fibonacci(n), which returns the first n terms as a space-separated string with no trailing space. Return an empty string when n is zero.

Input: A non-negative integer n.

Output: A string containing the first n Fibonacci terms, starting with 0, 1.

Constraints

  • 0 <= n <= 1000
  • The sequence starts with 0 and 1
  • Terms are separated by one space with no trailing space

Function Signature

def fibonacci(n):
Interviewer

Your question is Fibonacci Sequence Printing. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.