Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Project 4: Recursion Submission: To earn credit, you MUST use recursion in your solution Sum of Digits Write a python class definition for class Sumi

Project 4: Recursion

Submission: To earn credit, you MUST use recursion in your solution

Sum of Digits

Write a python class definition for class Sumi with a single instance variable self.num of type int and single instance method called sum_of_digits.

The default constructor sets the instance variable equal to zero.

The instance method returns the sum of digits of the instance.

Please note that we do not know the number of digits in advance. Example: >>> n = Sumi(369)

>>> sum_of_digits(n) 18

>>> m = Sumi()

>>> sum_of_digits(m)

0

Hint: use the binary operators // and %. Each method of a class has to have self as a first parameter, i.e. do this:

def recur(self, num). Make sure you use self, when you call the method recursively.

Remember: The Three Rules of Recursion

Base (termination) condition

Decomposition to smaller instance

Use solutions to smaller instances to solve the original problem

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

Recommended Textbook for

The Database Relational Model A Retrospective Review And Analysis

Authors: C. J. Date

1st Edition

0201612941, 978-0201612943

More Books

Students also viewed these Databases questions

Question

Problem: Evaluate the integral: I - -[ze dx

Answered: 1 week ago

Question

Problem: Evaluate the integral: I = 1- 1 dx 9

Answered: 1 week ago

Question

Describe the Indian constitution and political system.

Answered: 1 week ago

Question

=+j Explain the litigation risks in international labor relations.

Answered: 1 week ago

Question

=+j What rules will apply to the process of negotiations?

Answered: 1 week ago