Write a single statement that assigns avg_sales with the average of num_sales1, num_sales2, and num_sales3. Sample output with inputs: 3 4 8 Average sales: 5.00 318650 2047284 qdzay7 1 avg sales 2. 3 num_sales1 - int(input())
Write a single statement that assigns avg_sales with the average of num_sales1, num_sales2, and num_sales3. Sample output with inputs: 3 4 8 Average sales: 5.00 318650 2047284 qdzay7 1 avg sales 2. 3 num_sales1 - int(input())
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question

Transcribed Image Text:### Challenge Activity: 2.6.1 Computing an Average
**Task:**
Write a single statement that assigns `avg_sales` with the average of `num_sales1`, `num_sales2`, and `num_sales3`.
**Sample Output with Inputs 3, 4, 8:**
```
Average sales: 5.00
```
**Code:**
```python
1 avg_sales = 0
2 num_sales1 = int(input())
3 num_sales2 = int(input())
4 num_sales3 = int(input())
5
6 # Your solution goes here
7
8 print('Average sales: {:.2f}'.format(avg_sales))
```
### Challenge Activity: 2.6.2 Sphere Volume
**Task:**
Given `sphere_radius` and `pi`, compute the volume of a sphere and assign `sphere_volume` with the volume.
- Formula: Volume of sphere = (4.0/3.0) π r³
---
### Explanation:
- The task in the first challenge is to calculate the average of three inputted numbers (`num_sales1`, `num_sales2`, and `num_sales3`) and store it in the variable `avg_sales`.
- In the code snippet, three user inputs are taken and stored as integers in the variables `num_sales1`, `num_sales2`, and `num_sales3`.
- The average is calculated by adding these three numbers and dividing by three.
- This average is then formatted to two decimal places and printed as "Average sales: 5.00" based on the example given.
- The second challenge involves calculating the volume of a sphere using the given formula, which involves using the radius and the mathematical constant π (pi).
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 2 images

Recommended textbooks for you

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON

Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education