Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

## Question 1 : debugging ( 9 marks ) , The following code is supposed to print out the Fibonacci sequence up to

"## Question 1: debugging (9 marks)
",
"The following code is supposed to print out the Fibonacci sequence up to the number of terms specified by the user.
",
"For example, if the user enters 10, the output should be:
",
"
",
"Fibonacci sequence of 10 terms:
",
"0,1,1,2,3,5,8,13,21,34
",
"
",
"However, the program contains a number of errors. Your task is to fix the code until it works correctly.
",
"For each error that you find in the program, add a comment to explain the error."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "e9a221c9",
"metadata": {},
"outputs": [],
"source": [
"num_terms = input(\"Enter the number of terms: \")
",
"t1=0
",
"t2=1
",
"counter =1 # counter for checking when to stop
",
"if num_terms <=0
",
" print(\"No terms - number is not positive\")
",
"else:
",
" while counter < num_terms:
",
" print(\"Fibonacci sequence of\", num_terms, \" terms:\")
",
" if (counter = num_terms -1): # the last term
",
" print(t1)
",
" else:
",
" print(t1, end =\",\")
",
" next_term = t1+ t2
",
" # update values
",
" t1= t2
",
" t2= next_term"
]
},
{
"cell_type": "markdown",
"id": "48b09078",
"metadata": {},
"source": [

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions