Hi, i'm trying to get out how many times a certain number is used out of a Fibonacci function class fibcounter: def _init_(self): self.fibcount = 0 def getcount(self): return self.fibcount def fib(self,n): self.fibcount += 1 if n < 3: return 1 else: return fib(n-1)+fib(n-2) def resetcount(self): self.fibcount = 0 count = fibcounter() count.fib(10) print(count.getcount()) I'm getting an attribute error, "'fibcounter' object has no attribute 'fibcount'". How can I solve this? Thank you!
Hi, i'm trying to get out how many times a certain number is used out of a Fibonacci function
class fibcounter:
def _init_(self):
self.fibcount = 0
def getcount(self):
return self.fibcount
def fib(self,n):
self.fibcount += 1
if n < 3:
return 1
else:
return fib(n-1)+fib(n-2)
def resetcount(self):
self.fibcount = 0
count = fibcounter()
count.fib(10)
print(count.getcount())
I'm getting an attribute error, "'fibcounter' object has no attribute 'fibcount'". How can I solve this?
Thank you!
![](/static/compass_v2/shared-icons/check-mark.png)
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
Thank you! It's working now. If I wanted to count how many times a certain fib sequence i.e fib(5) is used in a fib(20) sequence, how would I go about that?
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
![Concepts of Database Management](https://www.bartleby.com/isbn_cover_images/9781337093422/9781337093422_smallCoverImage.gif)
![Prelude to Programming](https://www.bartleby.com/isbn_cover_images/9780133750423/9780133750423_smallCoverImage.jpg)
![Sc Business Data Communications and Networking, T…](https://www.bartleby.com/isbn_cover_images/9781119368830/9781119368830_smallCoverImage.gif)