Exercise 1 Use the function design recipe to develop a function named add_up that takes one argument, n, which is a positive integer. The function returns a floating point number containing the total of this series of numbers: 3 n 2 n-1 n-2 1 Your function must have exactly one loop. Your function definition must have type annotations and a complete docstring. Use the Python shell to test add_up. n + + t... +

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter6: Modularity Using Functions
Section6.2: Returning A Single Value
Problem 13E
icon
Related questions
Question

Please complete the exercise as instructed and no not use global variables. Thank you!

Exercise 1
Use the function design recipe to develop a function named add_up that takes one argument, n,
which is a positive integer. The function returns a floating point number containing the total of
this series of numbers:
+...+ 꽂
n
1
Your function must have exactly one loop.
Your function definition must have type annotations and a complete docstring. Use the Python
shell to test add_up.
n
+
2
n-1
+
3
n-2
Transcribed Image Text:Exercise 1 Use the function design recipe to develop a function named add_up that takes one argument, n, which is a positive integer. The function returns a floating point number containing the total of this series of numbers: +...+ 꽂 n 1 Your function must have exactly one loop. Your function definition must have type annotations and a complete docstring. Use the Python shell to test add_up. n + 2 n-1 + 3 n-2
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Datatypes
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr