Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

in python code Write a function oneSum which takes one input, n, and finds the sum: 1+11+111+1111 +... up to n digits of 1. For

image text in transcribedin python code

Write a function oneSum which takes one input, n, and finds the sum: 1+11+111+1111 +... up to n digits of 1. For example >print (oneSum( 1)) Which is 1-1 >print (oneSum( 2)) 12 Which is 1+11 12. >print (oneSum( 3)) 123 Which is 1+11+111 123. Hint: think about each element of the sum (1, 11, 111, for example) represented as a sum of powers of 10: 111-10A0+104110A2-1+10+100

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

Oracle9i Database Administrator Implementation And Administration

Authors: Carol McCullough-Dieter

1st Edition

0619159006, 978-0619159009

More Books

Students also viewed these Databases questions

Question

Define and measure service productivity.

Answered: 1 week ago