Computer Science, asked by sontakkeaarushi, 11 months ago

5. Write the script to display the fibonacci series : 01 1235 .....
6. Write the script to display the series 2 1 4365​

Answers

Answered by harnathyadav2907
2

Explanation:

Fibonacci Series In Python | Python Program To Print Fibonacci...

  1. INPUT FORMAT: Input consists of an integer.
  2. OUTPUT FORMAT: ...
  3. SAMPLE INPUT: 7.
  4. SAMPLE OUTPUT: 0 1 1 2 3 5 8.
  5. PREREQUISITE KNOWLEDGE:while loop in Python and Recursion in Python. ...
  6. Step 1:Input the 'n' value until which the Fibonacci series has to be generated.
  7. Step 3:while (count <= n)
  8. Step 5:Increment the count variable.
Similar questions