Our Objective
To implement a program that generates a Fibonacci sequence of string terms.
The Theory
The Fibonacci sequence is a sequence where the next term is the concatenation of the previous two terms. The first two terms of the Fibonacci sequence are "a" followed by "b" here.
Fn = (Fn – 1) + (Fn - 2)
Learning Outcomes
- Students learn how to find the Fibonacci sequence of a string.
- Students learn about the states generated in each statement.
- Students learn how to implement the Fibonacci sequence of string.
- Students learn about the concept of the Fibonacci sequence of string program in python.